1 Commits

Author SHA1 Message Date
ec4d8eca50 Update src/app/page.tsx 2026-03-10 16:41:41 +00:00

View File

@@ -10,7 +10,7 @@ import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Award, Scissors, Star, Users, Zap } from "lucide-react";
import { Award, Scissors, Star, Users, Zap, Crown, Shield } from "lucide-react";
export default function LandingPage() {
return (
@@ -79,25 +79,27 @@ export default function LandingPage() {
features={[
{
id: "haircuts", label: "Haircuts", title: "Precision Cuts for Every Style", items: [
"Classic fades and tapers", "Modern textured styles", "Beard shaping and maintenance", "Senior discounts available"
"Premium scissor-over-comb techniques", "Expert fade and taper mastery", "Modern textured styles with professional finish", "Senior discounts and loyalty rewards"
],
buttons: [{ text: "Book Now", href: "#contact" }]
},
{
id: "grooming", label: "Grooming", title: "Complete Personal Care Solutions", items: [
"Hot towel shaves", "Facial treatments and masks", "Eyebrow shaping", "Hair coloring services"
id: "grooming", label: "Grooming", title: "Complete Personal Care Excellence", items: [
"Hot towel shaves with premium products", "Facial treatments and therapeutic masks", "Precision eyebrow and beard shaping", "Professional hair coloring and treatments"
],
buttons: [{ text: "Book Now", href: "#contact" }]
},
{
id: "packages", label: "Packages", title: "Premium Service Bundles", items: [
"Haircut + beard trim combo", "Complete grooming package", "Monthly membership benefits", "Gift certificates available"
"Signature haircut + deluxe beard trim combo", "Complete premium grooming package", "Monthly elite membership benefits", "Luxury gift certificates and vouchers"
],
buttons: [{ text: "View Packages", href: "#" }]
}
]}
title="Our Services"
description="Comprehensive grooming solutions tailored to your needs"
title="Our Premium Services"
description="Comprehensive grooming excellence tailored to your discerning taste"
tag="Premium Quality"
tagIcon={Crown}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
@@ -134,10 +136,10 @@ export default function LandingPage() {
{ id: "1", icon: Users, title: "Happy Clients", value: "5,000+" },
{ id: "2", icon: Award, title: "Years of Excellence", value: "29" },
{ id: "3", icon: Star, title: "5-Star Reviews", value: "4.9" },
{ id: "4", icon: Zap, title: "Quick Service", value: "30 min" }
{ id: "4", icon: Shield, title: "Quality Guarantee", value: "100%" }
]}
title="Why Choose Debra's"
description="We've earned trust through years of exceptional service"
description="We've earned trust through years of exceptional service and premium quality"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
@@ -232,4 +234,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}