3 Commits

Author SHA1 Message Date
5ebde63fc2 Update src/app/page.tsx 2026-03-08 09:40:16 +00:00
05e81bbf03 Update src/app/page.tsx 2026-03-08 09:39:09 +00:00
b2505f567a Merge version_1 into main
Merge version_1 into main
2026-03-08 09:33:16 +00:00

View File

@@ -5,7 +5,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Award, Heart, Home, Star, Users, Scissors, Phone } from 'lucide-react'; import { Award, Heart, Home, Star, Users, Scissors, Phone } from 'lucide-react';
@@ -48,7 +48,7 @@ export default function LandingPage() {
imageAlt="Professional barber crafting the perfect fade" imageAlt="Professional barber crafting the perfect fade"
mediaAnimation="slide-up" mediaAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
background={{ variant: 'glowing-orb' }} background={{ variant: "plain" }}
buttons={[ buttons={[
{ text: "Book Now", href: "#contact" }, { text: "Book Now", href: "#contact" },
{ text: "Our Services", href: "#services" }, { text: "Our Services", href: "#services" },
@@ -123,7 +123,7 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardTwo <TestimonialCardSixteen
title="What Our Clients Say" title="What Our Clients Say"
description="Read testimonials from satisfied customers who trust The Clean Cut for their grooming needs." description="Read testimonials from satisfied customers who trust The Clean Cut for their grooming needs."
tag="Reviews" tag="Reviews"
@@ -133,13 +133,22 @@ export default function LandingPage() {
animationType="slide-up" animationType="slide-up"
testimonials={[ testimonials={[
{ {
id: "1", name: "Marcus Johnson", role: "Local Resident", testimonial: "Best barber in town. Every time I come here, I leave looking and feeling fantastic. The attention to detail is unmatched.", imageSrc: "http://img.b2bpic.net/free-photo/young-female-blazer-beauty-blonde_1139-773.jpg?_wi=2"}, id: "1", name: "Marcus Johnson", role: "Local Resident", company: "Regular Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-female-blazer-beauty-blonde_1139-773.jpg?_wi=2"},
{ {
id: "2", name: "David Rodriguez", role: "Business Owner", testimonial: "I trust The Clean Cut for important business meetings. Always professional, always perfect. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-angry-expression_1194-1680.jpg?_wi=2"}, id: "2", name: "David Rodriguez", role: "Business Owner", company: "Professional Client", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-angry-expression_1194-1680.jpg?_wi=2"},
{ {
id: "3", name: "James Chen", role: "Regular Customer", testimonial: "Been coming here for five years. They understand exactly what I want and deliver every single time. True professionals.", imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-african-american-businessman-brown-classic-jacket-isolated-dark-background_613910-6551.jpg?_wi=2"}, id: "3", name: "James Chen", role: "Regular Customer", company: "5-Year Client", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-african-american-businessman-brown-classic-jacket-isolated-dark-background_613910-6551.jpg?_wi=2"},
{ {
id: "4", name: "Anthony Torres", role: "Long-Time Client", testimonial: "The barbers here have genuine passion for their craft. You can see it in the quality of every cut. Worth the visit.", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1664.jpg?_wi=2"}, id: "4", name: "Anthony Torres", role: "Long-Time Client", company: "Loyal Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1664.jpg?_wi=2"},
]}
kpiItems={[
{ value: "25+", label: "Years of Excellence" },
{ value: "1000+", label: "Satisfied Clients" },
{ value: "5★", label: "Average Rating" },
]} ]}
/> />
</div> </div>
@@ -204,4 +213,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }