Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-03-19 20:30:09 +00:00

View File

@@ -3,12 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Phone, Star, Wrench } from "lucide-react";
import { Phone, Star, Wrench, Quote } from "lucide-react";
export default function LandingPage() {
return (
@@ -61,29 +61,38 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
<TestimonialCardThirteen
title="What Our Customers Say"
description="Over 150 five-star reviews. Real customers, real trust."
textboxLayout="default"
useInvertedBackground={false}
showRating={true}
carouselMode="buttons"
animationType="slide-up"
testimonials={[
{
id: "1", title: "6-Star Service", quote: "If I could leave a 6-star review, I would. Kevin and Paul always go above and beyond. Incredible service and honest pricing.", name: "Dakota", role: "Long-term Customer", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-handsome-guy-wearing-green-shirt_141793-122624.jpg", imageAlt: "Dakota, loyal customer"
id: "1", name: "Dakota", handle: "Long-term Customer", testimonial: "If I could leave a 6-star review, I would. Kevin and Paul always go above and beyond. Incredible service and honest pricing.", rating: 5,
icon: Quote
},
{
id: "2", title: "Respectful & Transparent", quote: "Respectful, honest, and they always take the time to explain everything clearly. No surprises, just quality work.", name: "Christine Bordeleau", role: "Regular Customer", imageSrc: "http://img.b2bpic.net/free-photo/closeup-beautiful-strict-woman-glasses_1262-1732.jpg", imageAlt: "Christine Bordeleau, satisfied customer"
id: "2", name: "Christine Bordeleau", handle: "Regular Customer", testimonial: "Respectful, honest, and they always take the time to explain everything clearly. No surprises, just quality work.", rating: 5,
icon: Quote
},
{
id: "3", title: "Quick Problem Solving", quote: "Had a small issue after buying a car. They fixed it right away without any hassle. That's the kind of support you want.", name: "Janet Forsey", role: "Used Car Buyer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg", imageAlt: "Janet Forsey, customer"
id: "3", name: "Janet Forsey", handle: "Used Car Buyer", testimonial: "Had a small issue after buying a car. They fixed it right away without any hassle. That's the kind of support you want.", rating: 5,
icon: Quote
},
{
id: "4", title: "Honest, Trustworthy, Inexpensive", quote: "Honest, trustworthy, inexpensive, and efficient. Exactly what you need in a mechanic. Can't ask for better.", name: "Richard de Borondy", role: "Regular Service Customer", imageSrc: "http://img.b2bpic.net/free-photo/portrait-sexy-handsome-fashion-businessman-model-dressed-elegant-blue-suit-posing-street-background-metrosexual_158538-10528.jpg", imageAlt: "Richard de Borondy, customer"
id: "4", name: "Richard de Borondy", handle: "Regular Service Customer", testimonial: "Honest, trustworthy, inexpensive, and efficient. Exactly what you need in a mechanic. Can't ask for better.", rating: 5,
icon: Quote
},
{
id: "5", title: "Massive Savings", quote: "Fixed a problem in 30 seconds that a dealership quoted me $900 for. This is why I always come back to KP's.", name: "Nicole Brown", role: "Smart Shopper", imageSrc: "http://img.b2bpic.net/free-photo/blond-business-woman-sitting-couch-smiling_23-2148095699.jpg", imageAlt: "Nicole Brown, customer"
id: "5", name: "Nicole Brown", handle: "Smart Shopper", testimonial: "Fixed a problem in 30 seconds that a dealership quoted me $900 for. This is why I always come back to KP's.", rating: 5,
icon: Quote
},
{
id: "6", title: "Family You Can Trust", quote: "Paul and Kevin are great—honest, trustworthy, and truly care about their customers. I've been going here over a decade.", name: "Andrew F", role: "10+ Year Customer", imageSrc: "http://img.b2bpic.net/free-photo/isolated-shot-attractive-successful-young-brunette-bearded-male-entrepreneur-wearing-trendy-jacket-casual-white-t-shirt-keeping-his-arms-folded-expressing-reluctancy-disagreement_343059-821.jpg", imageAlt: "Andrew F, long-term customer"
id: "6", name: "Andrew F", handle: "10+ Year Customer", testimonial: "Paul and Kevin are great—honest, trustworthy, and truly care about their customers. I've been going here over a decade.", rating: 5,
icon: Quote
}
]}
/>
@@ -208,4 +217,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}