Update src/app/page.tsx

This commit is contained in:
2026-03-03 20:57:06 +00:00
parent 346e1ad86b
commit c1183fbabd

View File

@@ -6,10 +6,10 @@ import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboard
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import MediaAbout from '@/components/sections/about/MediaAbout';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Facebook, Phone } from 'lucide-react';
import { Facebook, Phone, Star } from 'lucide-react';
export default function LandingPage() {
return (
@@ -132,25 +132,42 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
<TestimonialCardSix
testimonials={[
{
id: "1", name: "John Martinez", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg", imageAlt: "John Martinez"
id: "1", name: "Gina", handle: "Punctuality Champion", testimonial: "DaMan showed up exactly on time for my plumbing repair. Professional, courteous, and the work was done right the first time. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg", imageAlt: "Gina - satisfied customer", icon: Star
},
{
id: "2", name: "Sarah Anderson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg", imageAlt: "Sarah Anderson"
id: "2", name: "Ree Ree", handle: "Communication Expert", testimonial: "Outstanding communication throughout the entire project. They kept me informed every step of the way and answered all my questions. Five stars!", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg", imageAlt: "Ree Ree - satisfied customer", icon: Star
},
{
id: "3", name: "Mike Thompson", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "Mike Thompson"
id: "3", name: "Hussain", handle: "Value for Money", testimonial: "Best pricing I found in the area. No hidden fees, completely transparent quote, and the work quality exceeded expectations. Great value!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Hussain - satisfied customer", icon: Star
},
{
id: "4", name: "Robert Davis", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Robert Davis"
id: "4", name: "Sotero", handle: "Quality Assured", testimonial: "The craftsmanship on my carpentry work was exceptional. Every detail was handled with care and precision. I'll definitely call them again!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "Sotero - satisfied customer", icon: Star
},
{
id: "5", name: "Gina", handle: "Punctuality Champion", testimonial: "DaMan showed up exactly on time for my plumbing repair. Professional, courteous, and the work was done right the first time. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg", imageAlt: "Gina - satisfied customer", icon: Star
},
{
id: "6", name: "Ree Ree", handle: "Communication Expert", testimonial: "Outstanding communication throughout the entire project. They kept me informed every step of the way and answered all my questions. Five stars!", imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg", imageAlt: "Ree Ree - satisfied customer", icon: Star
},
{
id: "7", name: "Hussain", handle: "Value for Money", testimonial: "Best pricing I found in the area. No hidden fees, completely transparent quote, and the work quality exceeded expectations. Great value!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Hussain - satisfied customer", icon: Star
},
{
id: "8", name: "Sotero", handle: "Quality Assured", testimonial: "The craftsmanship on my carpentry work was exceptional. Every detail was handled with care and precision. I'll definitely call them again!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", imageAlt: "Sotero - satisfied customer", icon: Star
}
]}
cardTitle="Trusted by thousands of homeowners for reliable, professional handyman services"
cardTag="See what our customers say"
cardAnimation="blur-reveal"
title="What Our Customers Say"
description="Five-star reviews from homeowners who experienced our professional handyman services"
tag="Testimonials"
tagAnimation="slide-up"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
speed={40}
topMarqueeDirection="left"
/>
</div>