Update src/app/page.tsx

This commit is contained in:
2026-05-07 21:02:26 +00:00
parent 67c76b90d0
commit c63fb861b9

View File

@@ -11,7 +11,7 @@ import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCa
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Clock, Star, Users, MessageSquare } from "lucide-react";
import { Clock, Star, Users, MessageSquare, ClipboardCheck } from "lucide-react";
export default function LandingPage() {
return (
@@ -43,9 +43,9 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="Master Clips Barber Shop"
description="Expert grooming services in Edison, NJ. Low fades, precision shaves, and top-tier haircuts for the whole family."
description="Edison's premier destination for expert grooming. Serving NJ with precision fades, classic hot towel shaves, and a modern, welcoming atmosphere."
buttons={[
{ text: "Book Now", href: "#contact" },
{ text: "Book Your Cut", href: "#contact" },
]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/various-trimmers-dressing-table_107420-94767.jpg", imageAlt: "Classic barber interior" },
@@ -58,11 +58,11 @@ export default function LandingPage() {
<div id="about" data-section="about">
<AboutMetric
useInvertedBackground={false}
title="Why Choose Master Clips"
title="Modern Experience, Classic Craft"
metrics={[
{ icon: Clock, label: "Years Served", value: "10+" },
{ icon: Star, label: "Google Rating", value: "4.2" },
{ icon: Users, label: "Happy Clients", value: "10k+" },
{ icon: ClipboardCheck, label: "Digital Check-In", value: "Easy Access" },
{ icon: Star, label: "Google Rating", value: "4.8" },
{ icon: Users, label: "Community Trust", value: "15k+" },
]}
metricsAnimation="slide-up"
/>
@@ -79,7 +79,7 @@ export default function LandingPage() {
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-getting-his-hair-trimmed-with-trimmer_107420-94787.jpg" }
},
{
title: "Traditional Shaves", description: "Relaxing hot towel shaves for a smooth, professional finish.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/side-view-barbershop-concept_23-2148506263.jpg" },
title: "Digital In-Shop Check-In", description: "Skip the line. Use our tablet system to select your preferred barber and get updates in real-time.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/side-view-barbershop-concept_23-2148506263.jpg" },
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-hairdresser-shaving-beard-young-customer-towel-with-blade_181624-54554.jpg" }
},
{
@@ -89,7 +89,7 @@ export default function LandingPage() {
]}
showStepNumbers={false}
title="Our Signature Services"
description="From precision fades to relaxing shaves, we offer expert grooming for every style."
description="We combine traditional barber techniques with seamless digital tools for the best possible customer experience."
/>
</div>
@@ -142,7 +142,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "q1", title: "Do you accept walk-ins?", content: "Yes, walk-ins are always welcome!" },
{ id: "q1", title: "How does the check-in work?", content: "Simply tap into our digital kiosk when you arrive, choose your preferred barber, and receive real-time updates on wait times." },
{ id: "q2", title: "Are you open on weekends?", content: "Yes, we are open 7 days a week." },
{ id: "q3", title: "Is parking available?", content: "Yes, we offer private lot parking for customers." },
]}
@@ -188,4 +188,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}