3 Commits

Author SHA1 Message Date
db6463eabd Merge version_3 into main
Merge version_3 into main
2026-03-07 22:06:22 +00:00
51c255007a Update src/app/page.tsx 2026-03-07 22:06:18 +00:00
5785c1b9d4 Merge version_2 into main
Merge version_2 into main
2026-03-07 22:05:42 +00:00

View File

@@ -9,7 +9,7 @@ import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Calendar, Scissors, Star } from 'lucide-react'; import { Calendar, Scissors, Star, MapPin } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -42,7 +42,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardTestimonial <HeroBillboardTestimonial
title="Premium Barbershop Excellence" title="Premium Barbershop Excellence"
description="Experience the art of professional grooming at Fade Away Vazquez. Where precision meets hospitality in every cut." description="Experience the art of professional grooming at Fade Away Vazquez. Where precision meets hospitality in every cut. Located at 928 Thomas Drive, Panama City, FL 32408."
tag="Est. 2020" tag="Est. 2020"
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
@@ -64,7 +64,7 @@ export default function LandingPage() {
} }
]} ]}
buttons={[ buttons={[
{ text: "Book Your Fade", href: "#contact" }, { text: "Book Appointment", href: "#contact" },
{ text: "View Services", href: "#services" } { text: "View Services", href: "#services" }
]} ]}
buttonAnimation="blur-reveal" buttonAnimation="blur-reveal"
@@ -76,7 +76,7 @@ export default function LandingPage() {
<MetricSplitMediaAbout <MetricSplitMediaAbout
tag="Our Story" tag="Our Story"
title="Master Barber Craftsmanship Since 2020" title="Master Barber Craftsmanship Since 2020"
description="Fade Away Vazquez is more than a barbershop—it's a sanctuary for style-conscious men seeking precision cuts and exceptional service. Founded with a passion for the art of barbering, we blend traditional techniques with modern trends to deliver results that exceed expectations." description="Fade Away Vazquez is more than a barbershop—it's a sanctuary for style-conscious men seeking precision cuts and exceptional service. Founded with a passion for the art of barbering, we blend traditional techniques with modern trends to deliver results that exceed expectations. Visit us at 928 Thomas Drive, Panama City, FL 32408."
metrics={[ metrics={[
{ value: "5,000+", title: "Satisfied Clients" }, { value: "5,000+", title: "Satisfied Clients" },
{ value: "15+", title: "Years Combined Experience" } { value: "15+", title: "Years Combined Experience" }
@@ -93,7 +93,7 @@ export default function LandingPage() {
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureBento <FeatureBento
title="Premium Services" title="Premium Services"
description="Expert barber services tailored to your style and preferences" description="Expert barber services tailored to your style and preferences. Available at our Panama City location at 928 Thomas Drive."
tag="Our Specialties" tag="Our Specialties"
tagIcon={Scissors} tagIcon={Scissors}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -120,7 +120,7 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing"> <div id="pricing" data-section="pricing">
<PricingCardNine <PricingCardNine
title="Our Pricing" title="Our Pricing"
description="Transparent pricing for premium barber services" description="Transparent pricing for premium barber services at 928 Thomas Drive, Panama City, FL 32408"
tag="Services & Rates" tag="Services & Rates"
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -146,7 +146,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTwo <TestimonialCardTwo
title="Client Reviews" title="Client Reviews"
description="Hear from our satisfied clients about their experience at Fade Away Vazquez" description="Hear from our satisfied clients about their experience at Fade Away Vazquez, 928 Thomas Drive, Panama City, FL 32408"
tag="Testimonials" tag="Testimonials"
tagIcon={Star} tagIcon={Star}
tagAnimation="slide-up" tagAnimation="slide-up"
@@ -176,7 +176,7 @@ export default function LandingPage() {
tagIcon={Calendar} tagIcon={Calendar}
tagAnimation="slide-up" tagAnimation="slide-up"
title="Book Your Appointment" title="Book Your Appointment"
description="Reserve your spot at Fade Away Vazquez and experience premium barbershop service. Our booking system makes it easy to schedule." description="Reserve your spot at Fade Away Vazquez and experience premium barbershop service. Visit us at 928 Thomas Drive, Panama City, FL 32408, United States. Our booking system makes it easy to schedule."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/back-view-smiley-barber-using-hairdryer_23-2148298282.jpg" imageSrc="http://img.b2bpic.net/free-photo/back-view-smiley-barber-using-hairdryer_23-2148298282.jpg"
@@ -192,10 +192,10 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoReveal <FooterLogoReveal
logoText="Fade Away Vazquez" logoText="Fade Away Vazquez"
leftLink={{ text: "Privacy Policy", href: "#" }} leftLink={{ text: "928 Thomas Drive, Panama City, FL 32408", href: "#" }}
rightLink={{ text: "Contact", href: "mailto:info@fadeawayvazquez.com" }} rightLink={{ text: "Contact", href: "mailto:info@fadeawayvazquez.com" }}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }