2 Commits

Author SHA1 Message Date
ec721b5966 Update src/app/page.tsx 2026-03-08 09:35:12 +00:00
2fe7392557 Update src/app/page.tsx 2026-03-08 09:34:27 +00:00

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 TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
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';
@@ -48,7 +48,7 @@ export default function LandingPage() {
imageAlt="Professional barber crafting the perfect fade"
mediaAnimation="slide-up"
useInvertedBackground={false}
background={{ variant: "plain" }}
background={{ variant: 'glowing-orb' }}
buttons={[
{ text: "Book Now", href: "#contact" },
{ text: "Our Services", href: "#services" },
@@ -123,7 +123,7 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
<TestimonialCardTwo
title="What Our Clients Say"
description="Read testimonials from satisfied customers who trust The Clean Cut for their grooming needs."
tag="Reviews"
@@ -133,22 +133,13 @@ export default function LandingPage() {
animationType="slide-up"
testimonials={[
{
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: "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: "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: "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: "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: "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: "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" },
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"},
]}
/>
</div>
@@ -213,4 +204,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}