5 Commits

Author SHA1 Message Date
50d3a225cb Merge version_2 into main
Merge version_2 into main
2026-04-09 12:42:13 +00:00
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 FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
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 MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -164,23 +164,19 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
<FooterBase
logoText="GameVault"
columns={[
{
title: "Platform", items: [
{
label: "Games", href: "#games"},
{
label: "Support", href: "#faq"},
{ label: "Games", href: "#games" },
{ label: "Support", href: "#faq" },
],
},
{
title: "Legal", items: [
{
label: "Terms of Service", href: "#"},
{
label: "Privacy Policy", href: "#"},
{ label: "Terms of Service", href: "#" },
{ label: "Privacy Policy", href: "#" },
],
},
]}
@@ -189,4 +185,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}