190 lines
8.9 KiB
TypeScript
190 lines
8.9 KiB
TypeScript
"use client"
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
|
import TextAbout from '@/components/sections/about/TextAbout';
|
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
|
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="elastic-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="rounded"
|
|
contentWidth="mediumSmall"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="grid"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="medium"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Luis Gomez"
|
|
navItems={[
|
|
{ name: "Home", id: "hero" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Services", id: "services" },
|
|
{ name: "Team", id: "team" },
|
|
{ name: "Testimonials", id: "testimonials" }
|
|
]}
|
|
button={{
|
|
text: "Book Appointment", href: "contact"
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroCarouselLogo
|
|
logoText="LUIS GOMEZ"
|
|
description="Premium barber services by appointment only. Experience expert grooming and personalized attention in our upscale shop."
|
|
buttons={[
|
|
{ text: "Book Now", href: "contact" },
|
|
{ text: "Learn More", href: "about" }
|
|
]}
|
|
slides={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/side-view-leather-barber-shop-chair_23-2148242807.jpg", imageAlt: "Luis Gomez Barber Shop Interior"
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/doing-new-hairstyle-male-model-using-hairspray_651396-965.jpg", imageAlt: "Professional Haircut Service"
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/professional-hairdresser-modeling-beard-barbershop-close-up-photo_613910-18422.jpg", imageAlt: "Expert Beard Grooming"
|
|
}
|
|
]}
|
|
autoplayDelay={5000}
|
|
showDimOverlay={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TextAbout
|
|
tag="About Us"
|
|
title="Master Barber Luis Gomez brings 20+ years of excellence and precision to every cut. We believe in quality over quantity—by appointment only."
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Book Your Cut", href: "contact" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTwelve
|
|
title="Our Premium Services"
|
|
description="Expertly crafted grooming services tailored to your style and needs"
|
|
tag="Services"
|
|
features={[
|
|
{
|
|
id: "haircut", label: "Haircuts", title: "Precision cuts tailored to your face shape and preferences", items: [
|
|
"Classic barbershop cuts", "Modern fades and designs", "Textured and styling techniques", "Consultation included"
|
|
],
|
|
buttons: [
|
|
{ text: "Book Haircut", href: "contact" }
|
|
]
|
|
},
|
|
{
|
|
id: "beard", label: "Beard Care", title: "Professional beard grooming and maintenance", items: [
|
|
"Beard trimming and shaping", "Styling and conditioning", "Beard design services", "Product recommendations"
|
|
],
|
|
buttons: [
|
|
{ text: "Book Beard Service", href: "contact" }
|
|
]
|
|
},
|
|
{
|
|
id: "shave", label: "Straight Shaves", title: "Traditional straight razor shaves with premium care", items: [
|
|
"Hot lather shaves", "Premium aftershave products", "Skin care focus", "Relaxing experience"
|
|
],
|
|
buttons: [
|
|
{ text: "Book Shave", href: "contact" }
|
|
]
|
|
}
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="team" data-section="team">
|
|
<TeamCardFive
|
|
team={[
|
|
{
|
|
id: "1", name: "Luis Gomez", role: "Master Barber", imageSrc: "http://img.b2bpic.net/free-photo/serious-elegant-bearded-male-wearing-classic-waistcoat-slim-bow-tie_613910-1520.jpg", imageAlt: "Luis Gomez Master Barber"
|
|
},
|
|
{
|
|
id: "2", name: "Carlos Rivera", role: "Senior Barber", imageSrc: "http://img.b2bpic.net/free-photo/positive-bearded-black-male-with-tattoo-cross-arms-dressed-white-shirt_613910-15917.jpg", imageAlt: "Carlos Rivera Senior Barber"
|
|
},
|
|
{
|
|
id: "3", name: "Miguel Santos", role: "Barber Artist", imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-working-with-client-hairdressing-salon_613910-5075.jpg", imageAlt: "Miguel Santos Barber Artist"
|
|
},
|
|
{
|
|
id: "4", name: "Juan Morales", role: "Grooming Specialist", imageSrc: "http://img.b2bpic.net/free-photo/male-hairdresser-posing-salon_23-2150462487.jpg", imageAlt: "Juan Morales Grooming Specialist"
|
|
}
|
|
]}
|
|
title="Meet Our Barbers"
|
|
description="Experienced professionals dedicated to your grooming excellence"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "David Martinez", role: "Business Owner", company: "Local Enterprise", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg", imageAlt: "David Martinez"
|
|
},
|
|
{
|
|
id: "2", name: "James Wilson", role: "Professional", company: "Corporate Executive", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg", imageAlt: "James Wilson"
|
|
},
|
|
{
|
|
id: "3", name: "Robert Chen", role: "Entrepreneur", company: "Tech Startup", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg", imageAlt: "Robert Chen"
|
|
}
|
|
]}
|
|
kpiItems={[
|
|
{ value: "15+", label: "Years Experience" },
|
|
{ value: "1000+", label: "Satisfied Clients" },
|
|
{ value: "5★", label: "Average Rating" }
|
|
]}
|
|
title="What Our Clients Say"
|
|
description="Trusted by discerning gentlemen across the region for premium grooming"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCTA
|
|
tag="By Appointment Only"
|
|
title="Ready for Your Premium Grooming Experience?"
|
|
description="Contact us to schedule your appointment with Luis Gomez. We accept bookings by phone and email to ensure personalized attention for every client."
|
|
buttons={[
|
|
{ text: "Call Now", href: "tel:+1-555-0123" },
|
|
{ text: "Email Us", href: "mailto:bookings@luisgomezbarber.com" }
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="Luis Gomez"
|
|
copyrightText="© 2025 Luis Gomez Barber Shop. By Appointment Only. All rights reserved."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |