Skip to content

Commit

Permalink
fix: temp removed presale links
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Dec 13, 2024
1 parent a14698c commit 0498191
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
9 changes: 4 additions & 5 deletions src/js/components/App/pages/Home/Presale.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@ import * as Icon from 'react-icons/fi';
import Container from '../../../reusable/Container';
import Heading from '../../../reusable/Heading';
import Link from '../../../reusable/Link';
import { Route } from '../../../../utils/routes';

const Presale = () => (
<Container.FlexCols className="items-center justify-center sm:w-full gap-2">
<Container.Container>
<Heading.H2>
<span className="text-brandRed font-bold">EKOKE Presale</span> is NOW
LIVE!
<span className="text-brandRed font-bold">EKOKE Presale</span> coming
soon
</Heading.H2>
</Container.Container>
<Container.Container>
<Link.Cta href={Route.PRESALE}>
Join the Presale NOW!
<Link.Cta className="hover:cursor-not-allowed">
Coming soon (January 15th 2025)
<Icon.FiArrowRight className="inline ml-2" />
</Link.Cta>
</Container.Container>
Expand Down
3 changes: 2 additions & 1 deletion src/js/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ const Footer = () => {
<Link.Default href={Route.MARKETPLACE} className="text-white">
Marketplace
</Link.Default>
<Link.Default href={Route.PRESALE} className="text-white">
{/*<Link.Default href={Route.PRESALE} className="text-white">
Presale
</Link.Default>
*/}
<Link.Default href={Route.ABOUT} className="text-white">
About
</Link.Default>
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Header/Desktop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Desktop = () => (
<img src={EkokeLogo} alt="EKOKE DAO" height={40} width={40} />
<TopbarLink name={'Home'} href={Route.HOME} />
<TopbarLink name={'Marketplace'} href={Route.MARKETPLACE} />
<TopbarLink name={'Presale'} href={Route.PRESALE} />
{/* <TopbarLink name={'Presale'} href={Route.PRESALE} /> */}
<TopbarLink name={'Giveaway'} href={Route.GIVEAWAY} />
<TopbarLink name={'About'} href={Route.ABOUT} />
<TopbarLink name={'Documentation'} href={Route.DOCUMENTATION} />
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Header/Mobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Mobile = () => (
</Container.FlexRow>
<Container.FlexRow className="h-[60px] w-full items-center justify-center gap-4">
<TopbarLink name={'Marketplace'} href={Route.MARKETPLACE} />
<TopbarLink name={'Presale'} href={Route.PRESALE} />
{/*<TopbarLink name={'Presale'} href={Route.PRESALE} /> */}
<TopbarLink name={'About'} href={Route.ABOUT} />
<TopbarLink name={'Documentation'} href={Route.DOCUMENTATION} />
</Container.FlexRow>
Expand Down

0 comments on commit 0498191

Please sign in to comment.