4 Commits

Author SHA1 Message Date
00a594955f Update src/app/page.tsx 2026-04-09 12:42:09 +00:00
16f7a161f3 Merge version_1 into main
Merge version_1 into main
2026-04-09 12:37:34 +00:00
d88f6e7247 Merge version_1 into main
Merge version_1 into main
2026-04-09 12:37:10 +00:00
41203041c1 Merge version_1 into main
Merge version_1 into main
2026-04-09 12:36:37 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureBento from '@/components/sections/feature/FeatureBento'; import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -164,23 +164,19 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseReveal <FooterBase
logoText="GameVault" logoText="GameVault"
columns={[ columns={[
{ {
title: "Platform", items: [ title: "Platform", items: [
{ { label: "Games", href: "#games" },
label: "Games", href: "#games"}, { label: "Support", href: "#faq" },
{
label: "Support", href: "#faq"},
], ],
}, },
{ {
title: "Legal", items: [ title: "Legal", items: [
{ { label: "Terms of Service", href: "#" },
label: "Terms of Service", href: "#"}, { label: "Privacy Policy", href: "#" },
{
label: "Privacy Policy", href: "#"},
], ],
}, },
]} ]}
@@ -189,4 +185,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }