Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-04-18 23:33:44 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -161,36 +161,43 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
tag="Urgent Delivery"
title="Get a Free Quote Now"
description="Call us now on 0333 344 3028 to discuss your consignment or fill the form for a fast callback."
<ContactCTA
tag="Logistics Experts"
title="Ready for Expedited Delivery?"
description="Our nationwide team is on standby to ensure your critical shipments reach their destination today."
buttons={[{ text: "Get a Quote", href: "#contact" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterSimple
columns={[
{
items: [
{ label: "Services", href: "#services" },
{ label: "How it Works", href: "#how-it-works" },
title: "Services", items: [
{ label: "Same Day Courier", href: "#" },
{ label: "National Logistics", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact", href: "#contact" }
]
},
{
items: [
{ label: "Terms & Conditions", href: "#" },
{ label: "Privacy Policy", href: "#" }
title: "Legal", items: [
{ label: "Terms", href: "#" },
{ label: "Privacy", href: "#" }
]
}
]}
logoText="Fountco Logistics"
bottomLeftText="© 2024 Fountco Logistics"
bottomRightText="Premium Same Day Courier Services"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}