Files
e558cde7-a72d-40cf-b31e-12e…/src/app/page.tsx
2026-03-24 13:35:06 +00:00

148 lines
6.0 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { Crown, GraduationCap, Scissors } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="compact"
sizing="large"
background="aurora"
cardStyle="gradient-bordered"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home", id: "home"
},
{
name: "Services", id: "services"
},
{
name: "Why Pico", id: "about"
},
{
name: "Barbers", id: "team"
},
{
name: "Testimonials", id: "testimonials"
},
{
name: "Book Now", id: "booking"
}
]}
brandName="PICO BARBERSHOP"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
background={{
variant: "plain"
}}
title="Stay Sharp. Stay Confident."
description="Precision cuts. Clean fades. A barbershop experience built for you—and your family.\n⭐⭐⭐⭐⭐ Rated by 100+ Happy Clients"
buttons={[
{
text: "Book Appointment", href: "/booking"
},
{
text: "Walk In Today", href: "/booking"
}
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/barber-shaves-bearded-man-vintage-atmosphere_1153-7908.jpg", imageAlt: "Barber cutting a client's hair in a luxury barbershop"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work-making-photo-his-phone_627829-7389.jpg", imageAlt: "Barber giving a kid a haircut, making them happy"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/adult-barber-washing-old-man-hair-backwash_23-2148181935.jpg", imageAlt: "Close up of a precision fade haircut"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-communicating-with-aged-client-studio_23-2148181856.jpg?_wi=1", imageAlt: "Interior of a clean and welcoming barbershop"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-man-hair-salon_23-2150665447.jpg", imageAlt: "Client receiving a beard grooming service with a hot towel"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-razor-scissors-wooden-table_23-2147839842.jpg", imageAlt: "Luxury barbershop tools laid out on a counter"
}
]}
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
textboxLayout="default"
useInvertedBackground={true}
names={[
"Family Approved", "Client Loved", "Precision Guaranteed", "Community Rated", "Expert Recommended", "Award Winning"
]}
title="Trusted by families, loved by clients, respected for precision."
description="Our commitment to excellence is reflected in every review. We're proud to be the community's choice for quality grooming."
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentyFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Precision Haircuts", description: "Expert stylists deliver sharp lines and perfect cuts, tailored to your individual style and preferences.", icon: Scissors,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-barber-shaving-client_1153-1498.jpg", imageAlt: "Barber scissors and comb"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-getting-haircut_23-2150665412.jpg", imageAlt: "Barber giving a fade haircut"
}
]
},
{
title: "Kids Haircuts (Specialty)", description: "Patient and skilled barbers make every child's haircut a fun, comfortable, and tear-free experience.", icon: GraduationCap,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/child-getting-haircut-salon_23-2150462507.jpg", imageAlt: "Happy child in barber chair"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/cute-preschooler-boy-getting-haircut-children-hairdresser-with-trimmer-is-cutting-little-boy-room-with-loft-interior_613910-5672.jpg", imageAlt: "Barber talking to a child"
}
]
},
{
title: "Beard Grooming & Hot Towel", description: "Indulge in a luxurious beard trim, shaping, and hot towel treatment for a refined and refreshed look.", icon: Crown,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/young-man-getting-his-beard-styled-barber_23-2148985724.jpg", imageAlt: "Man getting beard trimmed"
},
{}
]
}
]}
title="Our Signature Services"
description="Experience the Pico Barbershop difference with our expertly crafted services, designed for every member of your family."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}