File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ import Hero from '@/features/provisions/Hero';
2727import { EligibilityChecker } from '@/features/provisions/EligibilityChecker' ;
2828import { ProvisionCard } from '@/features/provisions/ProvisionCard' ;
2929import FAQs from '@/features/provisions/Faqs' ;
30+ import Navbar from '@/components/navbar' ;
31+ import Footer from '@/components/footer' ;
3032
3133export const dynamic = 'force-static' ;
3234export 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}
You can’t perform that action at this time.
0 commit comments