diff --git a/src/app/page.tsx b/src/app/page.tsx index e1f926e..e81fb30 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import ContactText from '@/components/sections/contact/ContactText'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import SplitAbout from '@/components/sections/about/SplitAbout'; @@ -29,77 +29,48 @@ export default function LandingPage() {
@@ -111,35 +82,17 @@ export default function LandingPage() { description="Comprehensive plumbing services for your home and business, delivered with precision." accordionItems={[ { - id: "1", - title: "Emergency Plumbing", - content: "Burst pipes, leaks, and urgent repairs. We're there fast.", - }, + id: "1", title: "Emergency Plumbing", content: "Burst pipes, leaks, and urgent repairs. We're there fast."}, { - id: "2", - title: "Drain Cleaning", - content: "Clogged drains cleared quickly and completely.", - }, + id: "2", title: "Drain Cleaning", content: "Clogged drains cleared quickly and completely."}, { - id: "3", - title: "Water Heater Repair & Install", - content: "Same-day service on all makes and models.", - }, + id: "3", title: "Water Heater Repair & Install", content: "Same-day service on all makes and models."}, { - id: "4", - title: "Pipe Repair & Replacement", - content: "From small leaks to full repiping projects.", - }, + id: "4", title: "Pipe Repair & Replacement", content: "From small leaks to full repiping projects."}, { - id: "5", - title: "Toilet & Fixture Repair", - content: "Quick fixes, no mess, no hassle.", - }, + id: "5", title: "Toilet & Fixture Repair", content: "Quick fixes, no mess, no hassle."}, { - id: "6", - title: "Sewer Line Services", - content: "Inspections, cleaning, and line replacement.", - }, + id: "6", title: "Sewer Line Services", content: "Inspections, cleaning, and line replacement."}, ]} imageSrc="http://img.b2bpic.net/free-photo/person-with-adjustable-wrench_1048-1698.jpg" mediaAnimation="slide-up" @@ -154,17 +107,11 @@ export default function LandingPage() { description="M.D. Service Plumbing has been serving the Colorado Springs area with honest, reliable plumbing work. We show up on time, treat your home with respect, and get the job done right — the first time. No surprise fees. No shortcuts." bulletPoints={[ { - title: "Serving Colorado Springs", - description: "Dedicated service to our local community.", - }, + title: "Serving Colorado Springs", description: "Dedicated service to our local community."}, { - title: "Licensed & Insured", - description: "Professional standards for your peace of mind.", - }, + title: "Licensed & Insured", description: "Professional standards for your peace of mind."}, { - title: "Available 24/7", - description: "We are ready when you need us most.", - }, + title: "Available 24/7", description: "We are ready when you need us most."}, ]} imageSrc="http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990731.jpg" mediaAnimation="slide-up" @@ -176,30 +123,15 @@ export default function LandingPage() { useInvertedBackground={false} testimonials={[ { - id: "1", - name: "Sarah Johnson", - imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-woman-blue-uniform-cap-looking-smiling-cheerfully-showing-thumbs-up-standing-white-wall_141793-60775.jpg", - }, + id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/young-delivery-woman-blue-uniform-cap-looking-smiling-cheerfully-showing-thumbs-up-standing-white-wall_141793-60775.jpg"}, { - id: "2", - name: "Michael Chen", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-female-employee-stand-desk-office-look-distance-thinking-visualizing-career-success-happy-businesswoman-plan-dream-workplace-business-vision-concept_657921-378.jpg", - }, + id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-female-employee-stand-desk-office-look-distance-thinking-visualizing-career-success-happy-businesswoman-plan-dream-workplace-business-vision-concept_657921-378.jpg"}, { - id: "3", - name: "Emily Rodriguez", - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-couple-standing-together-doing-ok-gesture-with-hand-smiling-eye-looking-through-fingers-with-happy-face_839833-32832.jpg", - }, + id: "3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/middle-age-couple-standing-together-doing-ok-gesture-with-hand-smiling-eye-looking-through-fingers-with-happy-face_839833-32832.jpg"}, { - id: "4", - name: "David Kim", - imageSrc: "http://img.b2bpic.net/free-photo/confident-smiling-young-woman-standing-kitchen_23-2147916396.jpg", - }, + id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/confident-smiling-young-woman-standing-kitchen_23-2147916396.jpg"}, { - id: "5", - name: "Jessica Lee", - imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-with-arms-crossed_23-2148414862.jpg", - }, + id: "5", name: "Jessica Lee", imageSrc: "http://img.b2bpic.net/free-photo/smiley-father-posing-with-arms-crossed_23-2148414862.jpg"}, ]} cardTitle="What Our Customers Say" cardTag="4.9★ Google Rating" @@ -208,44 +140,38 @@ export default function LandingPage() {
-