forked from Synthetixio/trading-leaderboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab90420
commit 0a25782
Showing
5 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
} |