Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzschoff committed Sep 22, 2023
1 parent ab90420 commit 0a25782
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 2 deletions.
Binary file added public/discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/snx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 26 additions & 2 deletions src/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
import { Image } from '@chakra-ui/image';
import { Flex } from '@chakra-ui/layout';
import { Link } from 'react-router-dom';

export default function Footer() {
// Add simple version of footer
return <Flex as="footer"></Flex>;
return (
<Flex
as="footer"
w="100%"
p="12"
borderTop="1px solid"
borderTopColor="gray.900"
justifyContent="space-between"
>
<Image src="snx.png" />

<Flex gap="4">
<Link to="https://discord.com/invite/AEdUHzt">
<Image src="discord.png" />
</Link>
<Link to="https://twitter.com/synthetix_io">
<Image src="twitter.png" />
</Link>
<Link to="https://github.com/synthetixio">
<Image src="github.png" />
</Link>
</Flex>
</Flex>
);
}

0 comments on commit 0a25782

Please sign in to comment.