diff --git a/src/app/page.tsx b/src/app/page.tsx index c52934e..7297526 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,6 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import { Droplet, Settings, ShieldCheck, Wrench, Zap } from "lucide-react"; export default function LandingPage() { @@ -44,11 +43,11 @@ export default function LandingPage() { title="Reliable Repairs. Honest Service. Every Time." description="Your trusted neighborhood auto repair shop in Gulshan-e-Iqbal, Karachi. Serving all makes and models with expert care." testimonials={[ - { name: "Ali Khan", handle: "@alikhan", testimonial: "Excellent service and very transparent pricing. My go-to shop for routine maintenance.", imageSrc: "http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881684.jpg", imageAlt: "auto repair shop interior" }, - { name: "Sara Ahmed", handle: "@saraahmed", testimonial: "Quick turnaround and skilled technicians. They fixed my engine issues perfectly.", imageSrc: "http://img.b2bpic.net/free-photo/mechanic-wiping-his-hands-with-napkin_1170-1551.jpg", imageAlt: "friendly experienced mechanic portrait" }, - { name: "Zaid Mahmood", handle: "@zaidm", testimonial: "Honest service. They don't try to oversell unneeded parts. Highly recommended.", imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-auto-repairman-talking-customer-workshop_637285-8626.jpg", imageAlt: "engine diagnostic scan tool" }, - { name: "Fatima Rizvi", handle: "@fatimar", testimonial: "The staff is professional and very knowledgeable about all car makes.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-work-his-garage_146671-19701.jpg", imageAlt: "oil change service car" }, - { name: "Omar Siddiqui", handle: "@omarsid", testimonial: "Superb brake service. My car feels brand new again!", imageSrc: "http://img.b2bpic.net/free-photo/car-repairman-wearing-white-uniform-standing-holding-wrench-that-is-essential-tool-mechanic-with-laptop-checking-engine_1150-16590.jpg", imageAlt: "car battery testing tool" } + { name: "Ali Khan", handle: "@alikhan", testimonial: "Excellent service and very transparent pricing. My go-to shop for routine maintenance.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881684.jpg", imageAlt: "auto repair shop interior" }, + { name: "Sara Ahmed", handle: "@saraahmed", testimonial: "Quick turnaround and skilled technicians. They fixed my engine issues perfectly.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/mechanic-wiping-his-hands-with-napkin_1170-1551.jpg", imageAlt: "friendly experienced mechanic portrait" }, + { name: "Zaid Mahmood", handle: "@zaidm", testimonial: "Honest service. They don't try to oversell unneeded parts. Highly recommended.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-african-american-auto-repairman-talking-customer-workshop_637285-8626.jpg", imageAlt: "engine diagnostic scan tool" }, + { name: "Fatima Rizvi", handle: "@fatimar", testimonial: "The staff is professional and very knowledgeable about all car makes.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-mechanic-work-his-garage_146671-19701.jpg", imageAlt: "oil change service car" }, + { name: "Omar Siddiqui", handle: "@omarsid", testimonial: "Superb brake service. My car feels brand new again!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/car-repairman-wearing-white-uniform-standing-holding-wrench-that-is-essential-tool-mechanic-with-laptop-checking-engine_1150-16590.jpg", imageAlt: "car battery testing tool" } ]} buttons={[{ text: "Book Appointment", href: "#contact" }, { text: "Call Now", href: "tel:+923001234567" }]} imageSrc="http://img.b2bpic.net/free-photo/modern-automobile-mechanic-composition_23-2147881684.jpg" @@ -58,7 +57,6 @@ export default function LandingPage() {