Update src/app/page.tsx

This commit is contained in:
2026-03-08 09:39:09 +00:00
parent b2505f567a
commit 05e81bbf03

View File

@@ -5,7 +5,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import SplitAbout from '@/components/sections/about/SplitAbout';
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 FooterMedia from '@/components/sections/footer/FooterMedia';
import { Award, Heart, Home, Star, Users, Scissors, Phone } from 'lucide-react';
@@ -122,7 +122,7 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
<TestimonialCardSixteen
title="What Our Clients Say"
description="Read testimonials from satisfied customers who trust The Clean Cut for their grooming needs."
tag="Reviews"
@@ -132,13 +132,18 @@ export default function LandingPage() {
animationType="slide-up"
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>
@@ -203,4 +208,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}