From 17fdbcd46ec1a14c48ad84588bf52c9696fd8f2c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 15:38:28 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e8c2f23..3c9a1dd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -71,11 +71,11 @@ export default function LandingPage() { avatarText="Trusted by 100+ local families" showMarqueeCard={true} marqueeItems={[ - { text: "24/7 Service" }, - { text: "Local Technicians" }, - { text: "Upfront Pricing" }, - { text: "Fast Response" }, - { text: "Licensed & Insured" } + { type: "text-icon", text: "24/7 Service", icon: Zap }, + { type: "text-icon", text: "Local Technicians", icon: Wrench }, + { type: "text-icon", text: "Upfront Pricing", icon: MapPin }, + { type: "text-icon", text: "Fast Response", icon: Star }, + { type: "text-icon", text: "Licensed & Insured", icon: Zap } ]} className="w-full" containerClassName="max-w-7xl mx-auto px-4" @@ -148,12 +148,12 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { id: "testimonial-1", name: "Maria Rodriguez", date: "2 weeks ago", title: "Water Heater Replacement", quote: "These guys earned my trust. Manny explained everything clearly and took great care of my elderly aunt's home. Fast service and fair pricing!", tag: "Water Heater", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom", tagIcon: Star }, - { id: "testimonial-2", name: "James Chen", date: "1 month ago", title: "Emergency Pipe Repair", quote: "Called at midnight with a burst pipe. They showed up in 35 minutes and fixed it professionally. Very impressed with their emergency response.", tag: "Emergency Service", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom", tagIcon: Star }, - { id: "testimonial-3", name: "Sarah Martinez", date: "3 weeks ago", title: "Drain Cleaning", quote: "They replaced our water heater and the installation was clean and organized. Hot water recovery is much faster now. Highly recommend!", tag: "Installation", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom", tagIcon: Star }, - { id: "testimonial-4", name: "David Thompson", date: "1 week ago", title: "Toilet Repair", quote: "Very kind people and great work. They showed up exactly when scheduled, fixed the toilet, and cleaned up after themselves. Perfect service!", tag: "Toilet Service", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom", tagIcon: Star }, - { id: "testimonial-5", name: "Linda Garcia", date: "2 weeks ago", title: "Leak Detection", quote: "Found a hidden leak I didn't even know about. Their leak detection saved me from major water damage. Professional and thorough!", tag: "Leak Detection", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom", tagIcon: Star }, - { id: "testimonial-6", name: "Robert Johnson", date: "10 days ago", title: "Garbage Disposal", quote: "Fixed our garbage disposal quickly and affordably. Explained the issue clearly and provided options. Great local plumbers!", tag: "Disposal Repair", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom", tagIcon: Star } + { id: "testimonial-1", name: "Maria Rodriguez", date: "2 weeks ago", title: "Water Heater Replacement", quote: "These guys earned my trust. Manny explained everything clearly and took great care of my elderly aunt's home. Fast service and fair pricing!", tag: "Water Heater", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom" }, + { id: "testimonial-2", name: "James Chen", date: "1 month ago", title: "Emergency Pipe Repair", quote: "Called at midnight with a burst pipe. They showed up in 35 minutes and fixed it professionally. Very impressed with their emergency response.", tag: "Emergency Service", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom" }, + { id: "testimonial-3", name: "Sarah Martinez", date: "3 weeks ago", title: "Drain Cleaning", quote: "They replaced our water heater and the installation was clean and organized. Hot water recovery is much faster now. Highly recommend!", tag: "Installation", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom" }, + { id: "testimonial-4", name: "David Thompson", date: "1 week ago", title: "Toilet Repair", quote: "Very kind people and great work. They showed up exactly when scheduled, fixed the toilet, and cleaned up after themselves. Perfect service!", tag: "Toilet Service", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom" }, + { id: "testimonial-5", name: "Linda Garcia", date: "2 weeks ago", title: "Leak Detection", quote: "Found a hidden leak I didn't even know about. Their leak detection saved me from major water damage. Professional and thorough!", tag: "Leak Detection", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom" }, + { id: "testimonial-6", name: "Robert Johnson", date: "10 days ago", title: "Garbage Disposal", quote: "Fixed our garbage disposal quickly and affordably. Explained the issue clearly and provided options. Great local plumbers!", tag: "Disposal Repair", avatarSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721535.jpg", avatarAlt: "satisfied customer new bathroom" } ]} containerClassName="max-w-7xl mx-auto px-4" titleClassName="text-3xl md:text-4xl font-extrabold text-[var(--foreground)]" @@ -184,7 +184,6 @@ export default function LandingPage() { titleClassName="text-3xl md:text-4xl font-extrabold text-[var(--foreground)]" descriptionClassName="text-lg text-[var(--foreground)] opacity-80" tagClassName="text-sm font-semibold text-[var(--primary-cta)]" - textBoxTitleClassName="text-3xl md:text-4xl font-extrabold text-[var(--foreground)]" logoTextClassName="font-semibold text-[var(--foreground)]" /> -- 2.49.1