Compare commits
19 Commits
version_1_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 3fcb99cd6a | |||
|
|
088b0f2742 | ||
| ea057c6133 | |||
|
|
7547a3c510 | ||
| 333773c15b | |||
|
|
98cdcc13b5 | ||
| 9233b67e1e | |||
|
|
ceda0d84a4 | ||
| 01974166de | |||
| c6a9cc727f | |||
| bff5300d09 | |||
| 51ed839015 | |||
| accb234b80 | |||
| 1892db8857 | |||
| ff259dd34e | |||
| 1bd7056dec | |||
| a5289b54eb | |||
| 6de80254f8 | |||
|
|
4e8d8a2bb1 |
@@ -4,6 +4,43 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
|
||||
import { Outlet } from 'react-router-dom';
|
||||
import { StyleProvider } from "@/components/ui/StyleProvider";
|
||||
import { useState, useEffect } from 'react';
|
||||
import { Timer } from 'lucide-react';
|
||||
import Button from '@/components/ui/Button';
|
||||
|
||||
function FloatingDiscount() {
|
||||
const [timeLeft, setTimeLeft] = useState(300);
|
||||
|
||||
useEffect(() => {
|
||||
if (timeLeft <= 0) return;
|
||||
const timer = setInterval(() => setTimeLeft(t => t - 1), 1000);
|
||||
return () => clearInterval(timer);
|
||||
}, [timeLeft]);
|
||||
|
||||
const mins = Math.floor(timeLeft / 60);
|
||||
const secs = timeLeft % 60;
|
||||
|
||||
if (timeLeft <= 0) return null;
|
||||
|
||||
return (
|
||||
<div className="fixed bottom-6 left-1/2 -translate-x-1/2 z-50 animate-in slide-in-from-bottom-10 fade-in duration-500">
|
||||
<div className="relative p-[2px] rounded-full overflow-hidden shadow-2xl">
|
||||
<div className="absolute top-1/2 left-1/2 aspect-square w-[300%] -translate-x-1/2 -translate-y-1/2 bg-[conic-gradient(from_0deg,transparent_0_340deg,white_360deg)] animate-[spin_2s_linear_infinite]" />
|
||||
<div className="relative bg-primary-cta text-primary-cta-text px-4 py-2 md:px-6 md:py-3 rounded-full flex items-center gap-3 md:gap-4 whitespace-nowrap">
|
||||
<div className="flex items-center gap-2 font-medium text-sm md:text-base">
|
||||
<Timer className="w-4 h-4 md:w-5 md:h-5" />
|
||||
<span className="hidden sm:inline bg-gradient-to-r from-white via-white/50 to-white bg-[length:200%_auto] animate-shimmer bg-clip-text text-transparent">Claim 20% Off Today!</span>
|
||||
<span className="sm:hidden bg-gradient-to-r from-white via-white/50 to-white bg-[length:200%_auto] animate-shimmer bg-clip-text text-transparent">20% Off!</span>
|
||||
</div>
|
||||
<div className="bg-background/20 px-2 py-1 md:px-3 md:py-1 rounded-md font-mono font-bold tracking-wider text-sm md:text-base">
|
||||
{mins}:{secs.toString().padStart(2, '0')}
|
||||
</div>
|
||||
<button className="bg-white text-primary-cta px-3 py-1 md:px-4 md:py-1.5 rounded-full text-xs md:text-sm font-semibold hover:bg-white/90 transition-colors">Opt In</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default function Layout() {
|
||||
const navItems = [
|
||||
@@ -52,6 +89,7 @@ export default function Layout() {
|
||||
<main className="flex-grow">
|
||||
<Outlet />
|
||||
</main>
|
||||
<FloatingDiscount />
|
||||
<SectionErrorBoundary name="footer">
|
||||
<FooterBasic
|
||||
columns={[
|
||||
|
||||
@@ -1,246 +1,28 @@
|
||||
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
|
||||
import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly; this shell only fixes render order.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HomeSection from './HomePage/sections/Home';
|
||||
import ServicesSection from './HomePage/sections/Services';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import SocialProofSection from './HomePage/sections/SocialProof';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="home" data-section="home">
|
||||
<SectionErrorBoundary name="home">
|
||||
<HeroBillboardTiltedCarousel
|
||||
tag="Your Local Plumbing Experts"
|
||||
title="Reliable Plumbing Services in Los Angeles"
|
||||
description="Expert solutions for all your residential and commercial plumbing needs. Fast, efficient, and always professional service across LA."
|
||||
primaryButton={{
|
||||
text: "Schedule Service",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Call Now",
|
||||
href: "tel:+15551234567",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-kitchen-rack-with-pull-out-faucet-sprayer-rinsing-drainer_169016-69667.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721528.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alcoholic-drunk-man-being-violent-angry-victim-woman-couple-having-abuse-issues-dealing-with-aggression-violence-addiction-beating-husband-harassing-abused-wife_482257-9409.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990736.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/service-maintenance-worker-repairing_23-2149176721.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-calling-plumber-fox-bathroom-problems_23-2150990699.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<SectionErrorBoundary name="services">
|
||||
<FeaturesArrowCards
|
||||
tag="Our Services"
|
||||
title="Comprehensive Plumbing Solutions"
|
||||
description="From emergency repairs to routine maintenance, we cover every aspect of your plumbing system with expertise and care."
|
||||
items={[
|
||||
{
|
||||
title: "Emergency Repairs",
|
||||
tags: [
|
||||
"24/7 Availability",
|
||||
"Fast Response",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746311.jpg",
|
||||
},
|
||||
{
|
||||
title: "Drain Cleaning",
|
||||
tags: [
|
||||
"Clog Removal",
|
||||
"Sewer Line",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-closeup-shot-water-pouring-water-drain_181624-18353.jpg",
|
||||
},
|
||||
{
|
||||
title: "Water Heater Services",
|
||||
tags: [
|
||||
"Installation",
|
||||
"Repair",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-touching-vintage-machine_23-2148180331.jpg",
|
||||
},
|
||||
{
|
||||
title: "Leak Detection & Repair",
|
||||
tags: [
|
||||
"Slab Leaks",
|
||||
"Pipe Repair",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-using-their-phone-kitchen_23-2149017744.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTestimonial
|
||||
tag="Why Choose Us"
|
||||
quote="LA Plumbing Pros quickly resolved our complex water heater issue with professionalism and expertise. Their team was prompt, courteous, and transparent with pricing. Highly recommend their services!"
|
||||
author="Sarah M."
|
||||
role="Homeowner, Santa Monica"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/stylish-woman-wearing-yellow-bandana_273609-13336.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Impact"
|
||||
title="Decades of Dedicated Service in LA"
|
||||
description="Trusted by thousands of homes and businesses across Los Angeles, we stand by our quality, reliability, and unparalleled customer satisfaction."
|
||||
metrics={[
|
||||
{
|
||||
value: "20+",
|
||||
title: "Years of Experience",
|
||||
description: "Serving the greater Los Angeles area with unmatched plumbing expertise.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-auto-mechanics-working-together-workshop_637285-9438.jpg",
|
||||
},
|
||||
{
|
||||
value: "5000+",
|
||||
title: "Satisfied Clients",
|
||||
description: "A growing community of happy homeowners and businesses trust our work.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/polyamory-people-spending-time-together_23-2149301972.jpg",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
title: "Emergency Availability",
|
||||
description: "Ready to respond to your urgent plumbing needs, day or night.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-using-pc-customer-support-job-workplace_482257-125150.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="What Our Clients Say"
|
||||
title="Trusted by the LA Community"
|
||||
description="Hear directly from our satisfied customers about their experience with our expert plumbing team and exceptional service."
|
||||
testimonials={[
|
||||
{
|
||||
name: "David R.",
|
||||
role: "Restaurant Owner",
|
||||
quote: "LA Plumbing Pros saved us during a busy dinner service. Their emergency response was incredible!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman_1163-3145.jpg",
|
||||
},
|
||||
{
|
||||
name: "Jessica L.",
|
||||
role: "Homeowner",
|
||||
quote: "The team was professional, clean, and fixed my leaky faucet perfectly. Highly recommend!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-modern-woman-girl-sitting-couch-using-digital-tablet-reading-ebook_1258-201983.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mark T.",
|
||||
role: "Property Manager",
|
||||
quote: "Consistent, reliable service for all our properties. LA Plumbing Pros is our go-to for all plumbing needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-middle-age-couple-having-date_23-2149016161.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sophia G.",
|
||||
role: "Small Business Owner",
|
||||
quote: "Affordable and effective drain cleaning. My business relies on them!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laughing-woman-with-paper-bags_23-2147786761.jpg",
|
||||
},
|
||||
{
|
||||
name: "Ethan C.",
|
||||
role: "Homeowner",
|
||||
quote: "They installed our new water heater efficiently and explained everything clearly. Fantastic service!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-colleagues-laughing-work_74855-4314.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SectionErrorBoundary name="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Proudly Certified & Partnered"
|
||||
title="Our Credentials & Community Trust"
|
||||
description="We are fully licensed, insured, and actively involved in the Los Angeles community, upholding the highest standards of plumbing service."
|
||||
names={[
|
||||
"LA Business Certified",
|
||||
"Master Plumbers Association",
|
||||
"Eco-Friendly Plumbing",
|
||||
"Trusted Contractor Network",
|
||||
"Better Business Bureau A+",
|
||||
"Residential Plumbing Guild",
|
||||
"Commercial Plumbing Alliance",
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Got Questions?"
|
||||
title="Frequently Asked Plumbing Questions"
|
||||
description="Find quick answers to common inquiries about our services, pricing, scheduling, and what to expect during a service call."
|
||||
items={[
|
||||
{
|
||||
question: "What areas do you serve in Los Angeles?",
|
||||
answer: "We proudly serve the entire Los Angeles area, including Santa Monica, Beverly Hills, Pasadena, Long Beach, and the surrounding communities. Contact us to confirm service availability in your specific neighborhood.",
|
||||
},
|
||||
{
|
||||
question: "Do you offer emergency plumbing services?",
|
||||
answer: "Yes, we offer 24/7 emergency plumbing services. If you have an urgent issue like a burst pipe or major leak, call our emergency line immediately for rapid assistance.",
|
||||
},
|
||||
{
|
||||
question: "How do you determine pricing for your services?",
|
||||
answer: "Our pricing is transparent and competitive. We provide a detailed estimate after assessing the plumbing issue. For most services, we offer flat-rate pricing so you know the cost upfront, with no hidden fees.",
|
||||
},
|
||||
{
|
||||
question: "Are your plumbers licensed and insured?",
|
||||
answer: "Absolutely. All our plumbers are fully licensed, bonded, and insured professionals with extensive training and experience. You can trust that you're receiving top-quality, compliant service.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Need Immediate Help?"
|
||||
text="Contact LA Plumbing Pros Today for Reliable Service"
|
||||
primaryButton={{
|
||||
text: "Call (555) 123-4567",
|
||||
href: "tel:+15551234567",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Request a Quote",
|
||||
href: "mailto:info@laplumbingpros.com",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<HomeSection />
|
||||
<ServicesSection />
|
||||
<AboutSection />
|
||||
<MetricsSection />
|
||||
<TestimonialsSection />
|
||||
<SocialProofSection />
|
||||
<FaqSection />
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
22
src/pages/HomePage/sections/About.tsx
Normal file
22
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTestimonial
|
||||
tag="Why Choose Us"
|
||||
quote="LA Plumbing Pros quickly resolved our complex water heater issue with professionalism and expertise. Their team was prompt, courteous, and transparent with pricing. Highly recommend their services!"
|
||||
author="Sarah M."
|
||||
role="Homeowner, Santa Monica"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/stylish-woman-wearing-yellow-bandana_273609-13336.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Need Immediate Help?"
|
||||
text="Contact LA Plumbing Pros Today for Reliable Service"
|
||||
primaryButton={{
|
||||
text: "Call (555) 123-4567",
|
||||
href: "tel:+15551234567",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Request a Quote",
|
||||
href: "mailto:info@laplumbingpros.com",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
39
src/pages/HomePage/sections/Faq.tsx
Normal file
39
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,39 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Got Questions?"
|
||||
title="Frequently Asked Plumbing Questions"
|
||||
description="Find quick answers to common inquiries about our services, pricing, scheduling, and what to expect during a service call."
|
||||
items={[
|
||||
{
|
||||
question: "What areas do you serve in Los Angeles?",
|
||||
answer: "We proudly serve the entire Los Angeles area, including Santa Monica, Beverly Hills, Pasadena, Long Beach, and the surrounding communities. Contact us to confirm service availability in your specific neighborhood.",
|
||||
},
|
||||
{
|
||||
question: "Do you offer emergency plumbing services?",
|
||||
answer: "Yes, we offer 24/7 emergency plumbing services. If you have an urgent issue like a burst pipe or major leak, call our emergency line immediately for rapid assistance.",
|
||||
},
|
||||
{
|
||||
question: "How do you determine pricing for your services?",
|
||||
answer: "Our pricing is transparent and competitive. We provide a detailed estimate after assessing the plumbing issue. For most services, we offer flat-rate pricing so you know the cost upfront, with no hidden fees.",
|
||||
},
|
||||
{
|
||||
question: "Are your plumbers licensed and insured?",
|
||||
answer: "Absolutely. All our plumbers are fully licensed, bonded, and insured professionals with extensive training and experience. You can trust that you're receiving top-quality, compliant service.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-man-working-as-plumber_23-2150746293.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
48
src/pages/HomePage/sections/Home.tsx
Normal file
48
src/pages/HomePage/sections/Home.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "home" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HomeSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="home" data-section="home">
|
||||
<SectionErrorBoundary name="home">
|
||||
<HeroBillboardTiltedCarousel
|
||||
tag="Your Local Plumbing Experts"
|
||||
title="Reliable Plumbing Services in Los Angeles"
|
||||
description="Expert solutions for all your residential and commercial plumbing needs. Fast, efficient, and always professional service across LA."
|
||||
primaryButton={{
|
||||
text: "Schedule Service",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Call Now",
|
||||
href: "tel:+15551234567",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-kitchen-rack-with-pull-out-faucet-sprayer-rinsing-drainer_169016-69667.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721528.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alcoholic-drunk-man-being-violent-angry-victim-woman-couple-having-abuse-issues-dealing-with-aggression-violence-addiction-beating-husband-harassing-abused-wife_482257-9409.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990736.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/service-maintenance-worker-repairing_23-2149176721.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-calling-plumber-fox-bathroom-problems_23-2150990699.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
40
src/pages/HomePage/sections/Metrics.tsx
Normal file
40
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,40 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Impact"
|
||||
title="Decades of Dedicated Service in LA"
|
||||
description="Trusted by thousands of homes and businesses across Los Angeles, we stand by our quality, reliability, and unparalleled customer satisfaction."
|
||||
metrics={[
|
||||
{
|
||||
value: "20+",
|
||||
title: "Years of Experience",
|
||||
description: "Serving the greater Los Angeles area with unmatched plumbing expertise.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-auto-mechanics-working-together-workshop_637285-9438.jpg",
|
||||
},
|
||||
{
|
||||
value: "5000+",
|
||||
title: "Satisfied Clients",
|
||||
description: "A growing community of happy homeowners and businesses trust our work.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/polyamory-people-spending-time-together_23-2149301972.jpg",
|
||||
},
|
||||
{
|
||||
value: "24/7",
|
||||
title: "Emergency Availability",
|
||||
description: "Ready to respond to your urgent plumbing needs, day or night.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-using-pc-customer-support-job-workplace_482257-125150.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
54
src/pages/HomePage/sections/Services.tsx
Normal file
54
src/pages/HomePage/sections/Services.tsx
Normal file
@@ -0,0 +1,54 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "services" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ServicesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="services" data-section="services">
|
||||
<SectionErrorBoundary name="services">
|
||||
<FeaturesArrowCards
|
||||
tag="Our Services"
|
||||
title="Comprehensive Plumbing Solutions"
|
||||
description="From emergency repairs to routine maintenance, we cover every aspect of your plumbing system with expertise and care."
|
||||
items={[
|
||||
{
|
||||
title: "Emergency Repairs",
|
||||
tags: [
|
||||
"24/7 Availability",
|
||||
"Fast Response",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-working-as-plumber_23-2150746311.jpg",
|
||||
},
|
||||
{
|
||||
title: "Drain Cleaning",
|
||||
tags: [
|
||||
"Clog Removal",
|
||||
"Sewer Line",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-closeup-shot-water-pouring-water-drain_181624-18353.jpg",
|
||||
},
|
||||
{
|
||||
title: "Water Heater Services",
|
||||
tags: [
|
||||
"Installation",
|
||||
"Repair",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-s-hand-touching-vintage-machine_23-2148180331.jpg",
|
||||
},
|
||||
{
|
||||
title: "Leak Detection & Repair",
|
||||
tags: [
|
||||
"Slab Leaks",
|
||||
"Pipe Repair",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-woman-using-their-phone-kitchen_23-2149017744.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
29
src/pages/HomePage/sections/SocialProof.tsx
Normal file
29
src/pages/HomePage/sections/SocialProof.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "social-proof" section.
|
||||
|
||||
import React from 'react';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function SocialProofSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SectionErrorBoundary name="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Proudly Certified & Partnered"
|
||||
title="Our Credentials & Community Trust"
|
||||
description="We are fully licensed, insured, and actively involved in the Los Angeles community, upholding the highest standards of plumbing service."
|
||||
names={[
|
||||
"LA Business Certified",
|
||||
"Master Plumbers Association",
|
||||
"Eco-Friendly Plumbing",
|
||||
"Trusted Contractor Network",
|
||||
"Better Business Bureau A+",
|
||||
"Residential Plumbing Guild",
|
||||
"Commercial Plumbing Alliance",
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="What Our Clients Say"
|
||||
title="Trusted by the LA Community"
|
||||
description="Hear directly from our satisfied customers about their experience with our expert plumbing team and exceptional service."
|
||||
testimonials={[
|
||||
{
|
||||
name: "David R.",
|
||||
role: "Restaurant Owner",
|
||||
quote: "LA Plumbing Pros saved us during a busy dinner service. Their emergency response was incredible!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman_1163-3145.jpg",
|
||||
},
|
||||
{
|
||||
name: "Jessica L.",
|
||||
role: "Homeowner",
|
||||
quote: "The team was professional, clean, and fixed my leaky faucet perfectly. Highly recommend!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-modern-woman-girl-sitting-couch-using-digital-tablet-reading-ebook_1258-201983.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mark T.",
|
||||
role: "Property Manager",
|
||||
quote: "Consistent, reliable service for all our properties. LA Plumbing Pros is our go-to for all plumbing needs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-middle-age-couple-having-date_23-2149016161.jpg",
|
||||
},
|
||||
{
|
||||
name: "Sophia G.",
|
||||
role: "Small Business Owner",
|
||||
quote: "Affordable and effective drain cleaning. My business relies on them!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laughing-woman-with-paper-bags_23-2147786761.jpg",
|
||||
},
|
||||
{
|
||||
name: "Ethan C.",
|
||||
role: "Homeowner",
|
||||
quote: "They installed our new water heater efficiently and explained everything clearly. Fantastic service!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-colleagues-laughing-work_74855-4314.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user