1 Commits

Author SHA1 Message Date
18d002652e Update src/app/page.tsx 2026-04-15 14:34:56 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
@@ -158,23 +158,21 @@ export default function LandingPage() {
description="Join the elite community of sports bettors today. Enter your email to receive early access and updates."
onSubmit={(email) => console.log(email)}
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
background={{ variant: "plain" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterLogoEmphasis
logoText="PickTrack"
columns={[
{ title: "Platform", items: [{ label: "Features", href: "#features" }, { label: "Performance", href: "#metrics" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
{ items: [{ label: "Features", href: "#features" }, { label: "Performance", href: "#metrics" }] },
{ items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ items: [{ label: "Privacy Policy" }, { label: "Terms of Service" }] }
]}
copyrightText="© 2025 | PickTrack"
ariaLabel="Site footer"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}