mango-web/components/ContactIcons.tsx

26 lines
702 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
2021-03-17 07:01:37 -07:00
<a href="https://github.com/blockworks-foundation">
<img height="40px" width="40px" src="/contact/github.svg" />
</a>
<a href="mailto:hello@blockworks.foundation">
<img height="40px" width="40px" src="/contact/email.svg" />
</a>
</Space>
</>
);
}