mango-web/components/ContactIcons.tsx

22 lines
557 B
TypeScript
Raw Normal View History

import { Space } from "antd";
2021-03-01 18:13:53 -08:00
export default function ContactIcons() {
return (
<>
<Space size="large">
<a href="https://discord.gg/67jySBhxrg">
<img height="40px" width="40px" src="/contact/discord.svg" />
</a>
2021-03-01 18:13:53 -08:00
<a href="https://twitter.com/mangomarkets">
<img height="40px" width="40px" src="/contact/twitter.svg" />
</a>
2021-03-01 18:13:53 -08:00
<a href="mailto:hello@blockworks.foundation">
<img height="40px" width="40px" src="/contact/email.svg" />
</a>
</Space>
</>
);
}