Update src/app/page.tsx

This commit is contained in:
2026-05-11 11:45:18 +00:00
parent 955423ae38
commit 9aa96e031e

View File

@@ -3,9 +3,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
@@ -143,23 +143,26 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Contact"
useInvertedBackground={false}
background={{
variant: "canvas-reveal"}}
title="Book Your Slot"
description="Ready for a fresh new look? Book your appointment now."
<ContactSplit
tag="Contact"
title="Book Your Slot"
description="Ready for a fresh new look? Book your appointment now."
background={{ variant: "canvas-reveal" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work-washing-head_627829-7234.jpg"
mediaPosition="right"
buttonText="Book Now"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Traffic Jam Saloon"
leftLink={{
text: "Privacy Policy", href: "#"}}
rightLink={{
text: "© 2026 Traffic Jam Saloon", href: "#"}}
<FooterSimple
columns={[
{ title: "Services", items: [{ label: "Haircuts" }, { label: "Styling" }, { label: "Facials" }] },
{ title: "Company", items: [{ label: "About Us" }, { label: "Contact" }, { label: "Privacy Policy" }] }
]}
bottomLeftText="© 2026 Traffic Jam Saloon"
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>