-
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
Showing
4 changed files
with
58 additions
and
15 deletions.
There are no files selected for viewing
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
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,19 +1,32 @@ | ||
import * as React from 'react'; | ||
import * as Icon from 'react-icons/fi'; | ||
import * as FaIcon from 'react-icons/fa6'; | ||
|
||
import Container from '../../../reusable/Container'; | ||
import Link from '../../../reusable/Link'; | ||
import { Route } from '../../../../utils/routes'; | ||
|
||
const Whitepaper = () => ( | ||
<Container.FlexCols className="items-center justify-center w-3/6 sm:w-full mx-auto gap-2"> | ||
<Container.FlexResponsiveRow className="items-center justify-center gap-4"> | ||
<Container.Container> | ||
<Link.Cta href={Route.DOCUMENTATION_WHITEPAPER}> | ||
Read the Whitepaper{' '} | ||
<Icon.FiExternalLink className="inline mr-2 text-white" /> | ||
<Icon.FiExternalLink className="inline text-white" /> | ||
</Link.Cta> | ||
</Container.Container> | ||
</Container.FlexCols> | ||
<Container.Container> | ||
<Link.Cta href={'https://discord.gg/AuWa2JATYf'}> | ||
<FaIcon.FaDiscord className="inline mr-2 text-white" /> | ||
Join us on Discord | ||
</Link.Cta> | ||
</Container.Container> | ||
<Container.Container> | ||
<Link.Cta href={'https://x.com/ekokedao'}> | ||
<FaIcon.FaXTwitter className="inline mr-2 text-white" /> | ||
Join us on X.com | ||
</Link.Cta> | ||
</Container.Container> | ||
</Container.FlexResponsiveRow> | ||
); | ||
|
||
export default Whitepaper; |
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
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