Merge version_4 into main #7

Merged
bender merged 1 commits from version_4 into main 2026-04-15 14:35:04 +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 FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
@@ -162,16 +162,18 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterBase
logoText="PickTrack"
columns={[
{ 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" }] }
{ 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: "#" }] }
]}
copyrightText="© 2025 | PickTrack"
ariaLabel="Site footer"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}