Merge version_2 into main #3

Merged
bender merged 1 commits from version_2 into main 2026-04-18 10:35:50 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
@@ -157,28 +157,27 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactCenter
tag="Contact Us"
title="Get in Touch"
description="Location: 123 Main Street, London. Hours: Mon-Sun 10:00 - 19:00. Call: +44 20 1234 5678"
background="sparkles-gradient"
useInvertedBackground={false}
background={{ variant: "radial-gradient" }}
tag="Visit Us"
title="Elite Cuts Barber"
description="123 Main Street, London. Call us: +44 20 1234 5678. Hours: Mon-Sun 10:00 - 19:00."
buttons={[{ text: "Book Now", href: "#booking" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBase
logoText="Elite Cuts"
columns={[
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Services", items: [{ label: "Haircuts", href: "#services" }, { label: "Beard", href: "#services" }] },
{ title: "Contact", items: [{ label: "123 Main St", href: "#" }, { label: "Email us", href: "mailto:hello@elitecuts.com" }] }
{ title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }
]}
bottomLeftText="© 2024 Elite Cuts Barber"
bottomRightText="All rights reserved."
copyrightText="© 2024 Elite Cuts Barber. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}