Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-09 12:42:13 +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>
);
}
}