4 Commits

Author SHA1 Message Date
96fb6ab9a7 Update src/app/page.tsx 2026-03-12 05:39:03 +00:00
c311b6624c Merge version_3 into main
Merge version_3 into main
2026-03-12 05:30:06 +00:00
de410c1688 Update src/app/page.tsx 2026-03-12 05:30:02 +00:00
471b912b6d Merge version_2 into main
Merge version_2 into main
2026-03-12 05:28:22 +00:00

View File

@@ -14,16 +14,16 @@ import { Calendar, Camera, Scissors, Sparkles, Star, Users, MapPin } from "lucid
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide" defaultTextAnimation="reveal-blur"
borderRadius="soft" borderRadius="pill"
contentWidth="compact" contentWidth="mediumLarge"
sizing="largeSmall" sizing="largeSizeMediumTitles"
background="circleGradient" background="aurora"
cardStyle="glass-depth" cardStyle="gradient-mesh"
primaryButtonStyle="shadow" primaryButtonStyle="gradient"
secondaryButtonStyle="layered" secondaryButtonStyle="glass"
headingFontWeight="normal" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
@@ -48,7 +48,7 @@ export default function LandingPage() {
description="Experience precision grooming and timeless style in our premium barbershop. Expert barbers dedicated to giving you the perfect cut, every time." description="Experience precision grooming and timeless style in our premium barbershop. Expert barbers dedicated to giving you the perfect cut, every time."
buttons={[ buttons={[
{ text: "Book Your Cut", href: "contact" }, { text: "Book Your Cut", href: "contact" },
{ text: "View Services", href: "services" } { text: "Book Your Appointment", href: "services" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
@@ -67,13 +67,13 @@ export default function LandingPage() {
<FeatureCardSix <FeatureCardSix
tag="Our Services" tag="Our Services"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="blur-reveal"
title="Premium Grooming Services" title="Premium Grooming Services"
description="From classic cuts to modern styles, we offer comprehensive grooming solutions tailored to your preferences" description="From classic cuts to modern styles, we offer comprehensive grooming solutions tailored to your preferences"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[{ text: "Book Now", href: "contact" }]} buttons={[{ text: "Book Now", href: "contact" }]}
buttonAnimation="slide-up" buttonAnimation="blur-reveal"
features={[ features={[
{ {
id: 1, id: 1,
@@ -99,13 +99,13 @@ export default function LandingPage() {
<TeamCardOne <TeamCardOne
tag="Our Team" tag="Our Team"
tagIcon={Users} tagIcon={Users}
tagAnimation="slide-up" tagAnimation="blur-reveal"
title="Meet Our Expert Barbers" title="Meet Our Expert Barbers"
description="Skilled professionals with years of experience in precision grooming and customer service" description="Skilled professionals with years of experience in precision grooming and customer service"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
gridVariant="four-items-2x2-equal-grid" gridVariant="four-items-2x2-equal-grid"
animationType="slide-up" animationType="scale-rotate"
members={[ members={[
{ {
id: "1", name: "Marco S.", role: "Head Barber", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-male-with-tattooed-arms-dressed-shirt-posing-grey-background_613910-2010.jpg", imageAlt: "Marco S., Head Barber at Kubazz" id: "1", name: "Marco S.", role: "Head Barber", imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-male-with-tattooed-arms-dressed-shirt-posing-grey-background_613910-2010.jpg", imageAlt: "Marco S., Head Barber at Kubazz"
@@ -127,7 +127,7 @@ export default function LandingPage() {
<TestimonialCardFive <TestimonialCardFive
tag="Client Reviews" tag="Client Reviews"
tagIcon={Star} tagIcon={Star}
tagAnimation="slide-up" tagAnimation="blur-reveal"
title="What Our Clients Say" title="What Our Clients Say"
description="Real feedback from satisfied customers who trust Kubazz for their grooming needs" description="Real feedback from satisfied customers who trust Kubazz for their grooming needs"
textboxLayout="default" textboxLayout="default"
@@ -159,12 +159,12 @@ export default function LandingPage() {
<ProductCardTwo <ProductCardTwo
tag="Portfolio" tag="Portfolio"
tagIcon={Camera} tagIcon={Camera}
tagAnimation="slide-up" tagAnimation="blur-reveal"
title="Our Work Gallery" title="Our Work Gallery"
description="Showcase of precision cuts and professional grooming transformations by our expert barbers" description="Showcase of precision cuts and professional grooming transformations by our expert barbers"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
animationType="slide-up" animationType="scale-rotate"
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
carouselMode="buttons" carouselMode="buttons"
products={[ products={[
@@ -200,14 +200,14 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
tag="Ready for Your Perfect Cut?" tag="Ready for Your Perfect Cut?"
tagIcon={Calendar} tagIcon={Calendar}
tagAnimation="slide-up" tagAnimation="blur-reveal"
title="Book Your Appointment Today" title="Book Your Appointment Today"
description="Located at 123 Main St, open Mon-Sat 10am-8pm. Call us at (555) 123-4567 or visit our location to schedule your grooming session. Walk-ins also welcome!" description="Located at 123 Main St, open Mon-Sat 10am-8pm. Call us at (555) 123-4567 or visit our location to schedule your grooming session. Walk-ins also welcome!"
buttons={[ buttons={[
{ text: "Call Now", href: "tel:+15551234567" }, { text: "Call Now", href: "tel:+15551234567" },
{ text: "Get Directions", href: "https://maps.google.com" } { text: "Get Directions", href: "https://maps.google.com" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="blur-reveal"
background={{ variant: "plain" }} background={{ variant: "plain" }}
useInvertedBackground={false} useInvertedBackground={false}
/> />
@@ -222,4 +222,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }