3 Commits

Author SHA1 Message Date
1bf5e6a9d2 Update src/app/page.tsx 2026-05-11 11:45:42 +00:00
9aa96e031e Update src/app/page.tsx 2026-05-11 11:45:18 +00:00
955423ae38 Merge version_1 into main
Merge version_1 into main
2026-05-11 11:43:55 +00:00

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';
@@ -49,7 +49,7 @@ export default function LandingPage() {
{ text: "Book Appointment", href: "#contact" },
{ text: "Call Now", href: "tel:+910000000000" }
]}
imageSrc="http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work-washing-head_627829-7234.jpg"
imageSrc="http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work-washing-head_627829-7234.jpg?_wi=1"
showDimOverlay={true}
avatars={[
{ src: "http://img.b2bpic.net/free-photo/master-hairdresser-prepares-face-shaving-barber-shop_613910-6221.jpg", alt: "A master hairdresser prepares the face for shaving in the barber shop." },
@@ -143,23 +143,26 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactSplit
tag="Contact"
useInvertedBackground={false}
background={{
variant: "canvas-reveal"}}
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?_wi=2"
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>