Skip to content

Commit b03d9c2

Browse files
committed
feat: add navbar and footer components to presale landing page
1 parent bb79aca commit b03d9c2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/app/page.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ import Hero from '@/features/provisions/Hero';
2727
import { EligibilityChecker } from '@/features/provisions/EligibilityChecker';
2828
import { ProvisionCard } from '@/features/provisions/ProvisionCard';
2929
import FAQs from '@/features/provisions/Faqs';
30+
import Navbar from '@/components/navbar';
31+
import Footer from '@/components/footer';
3032

3133
export const dynamic = 'force-static';
3234
export const runtime = 'nodejs';
@@ -472,7 +474,8 @@ export default function Page() {
472474
}, [walletTypeSelected, claimAddress]);
473475

474476
return (
475-
<>
477+
<div>
478+
<Navbar />
476479
{
477480
<div className='relative flex flex-col min-h-screen pt-24 pb-28 text-white z-10'>
478481
<Hero />
@@ -519,6 +522,9 @@ export default function Page() {
519522
</div>
520523
</div>
521524
}
522-
</>
525+
<div className='hidden lg:block'>
526+
<Footer />
527+
</div>
528+
</div>
523529
);
524530
}

0 commit comments

Comments
 (0)