Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-05-08 22:40:23 +00:00

View File

@@ -12,7 +12,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import { Award, Smile, Star } from "lucide-react";
import { CalendarCheck, Users, Scissors, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -85,12 +85,12 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "m1", icon: Award, title: "Years Experience", value: "10+" },
{ id: "m2", icon: Smile, title: "Happy Clients", value: "1000+" },
{ id: "m3", icon: Star, title: "Google Rating", value: "5.0" },
{ id: "m1", icon: Scissors, title: "Cuts Per Week", value: "150+" },
{ id: "m2", icon: Users, title: "Active Clients", value: "2.5k+" },
{ id: "m3", icon: Star, title: "Client Satisfaction", value: "99%" },
]}
title="By The Numbers"
description="Consistent quality that our clients trust, with years of experience and thousands of satisfied smiles."
title="Shop Statistics"
description="We pride ourselves on efficiency and the high volume of satisfied customers we serve every single week."
/>
</div>
@@ -129,11 +129,12 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
faqs={[
{ id: "q1", title: "Do I need an appointment?", content: "Yes, we are an appointment-only studio to ensure you get our full focus." },
{ id: "q2", title: "Where are you located?", content: "We are located at 1311 NE 1st Ave, Miami, FL 33132." },
{ id: "q1", title: "How early should I book?", content: "We recommend booking at least 3-4 days in advance, especially for weekend slots." },
{ id: "q2", title: "What if I'm late?", content: "We hold appointments for 10 minutes; after that, it's considered a no-show to respect other clients." },
{ id: "q3", title: "Do you offer group bookings?", content: "Yes, contact us directly for bachelor party or group grooming sessions." },
]}
title="Frequently Asked"
description="Everything you need to know before your visit."
title="Common Barber Questions"
description="Essential information regarding our booking and studio policies."
faqsAnimation="slide-up"
/>
</div>
@@ -143,22 +144,22 @@ export default function LandingPage() {
useInvertedBackground={false}
background={{ variant: "sparkles-gradient" }}
tag="Contact"
title="Get in Touch"
description="Find us at 1311 NE 1st Ave, Miami, FL 33132. Book your next grooming session through our website or give us a call to secure your spot."
title="Ready for a Fresh Look?"
description="Located at 1311 NE 1st Ave, Miami. Booking is essential. Use the form below to enquire about availability or special event packages."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
{ title: "The Shop", items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }, { label: "Careers", href: "#" }] },
{ title: "Information", items: [{ label: "Booking Policy", href: "#faq" }, { label: "Gift Cards", href: "#" }, { label: "Contact", href: "#contact" }] },
]}
bottomLeftText="© 2025 The Dapper Scoundrel"
bottomLeftText="© 2025 The Dapper Scoundrel | Premium Grooming"
bottomRightText="1311 NE 1st Ave, Miami, FL 33132"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}