diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 130db61..064a76e 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -8,7 +8,7 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import { CheckCircle } from "lucide-react"; -export default function LandingPage() { +export default function ServicesPage() { return ( @@ -57,66 +42,10 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - title: "Full Valet", - description: "Standard high-quality maintenance clean.", - icon: CheckCircle, - mediaItems: [ - { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wrapping-car_23-2149385679.jpg?_wi=5", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wrapping-car_23-2149385679.jpg?_wi=6", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg?_wi=3", - imageAlt: "ceramic coating car paint shiny", - }, - { - title: "Interior Detail", - description: "Professional deep clean for seats, mats, and upholstery.", - icon: CheckCircle, - mediaItems: [ - { - imageSrc: "http://img.b2bpic.net/free-photo/man-washing-his-car-garage_1157-26070.jpg?_wi=5", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/man-washing-his-car-garage_1157-26070.jpg?_wi=6", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/man-buying-car-showroom_1303-14589.jpg", - imageAlt: "satisfied car owner professional service", - }, - { - title: "Exterior Detail", - description: "Paint correction and exterior protection.", - icon: CheckCircle, - mediaItems: [ - { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg?_wi=4", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg?_wi=5", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-woman-car-salon_1157-32008.jpg", - imageAlt: "woman satisfied with auto service", - }, - { - title: "Ceramic Coating", - description: "Premium protection against elements and scratches.", - icon: CheckCircle, - mediaItems: [ - { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg?_wi=6", - }, - { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg?_wi=7", - }, - ], - imageSrc: "http://img.b2bpic.net/free-photo/this-job-needs-from-me-staying-contact-24-7_329181-2796.jpg", - imageAlt: "satisfied business professional car", - }, + { title: "Full Valet", description: "Standard high-quality maintenance clean.", icon: CheckCircle, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wrapping-car_23-2149385679.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wrapping-car_23-2149385679.jpg" }] }, + { title: "Interior Detail", description: "Professional deep clean for seats, mats, and upholstery.", icon: CheckCircle, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/man-washing-his-car-garage_1157-26070.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/man-washing-his-car-garage_1157-26070.jpg" }] }, + { title: "Exterior Detail", description: "Paint correction and exterior protection.", icon: CheckCircle, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg" }] }, + { title: "Ceramic Coating", description: "Premium protection against elements and scratches.", icon: CheckCircle, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg" }] } ]} title="Comprehensive Service Packages" description="Choose the level of care your vehicle deserves." @@ -131,66 +60,19 @@ export default function LandingPage() { title="Service Impact" description="Proven results for every vehicle type." metrics={[ - { - id: "m1", - value: "50+", - title: "Ceramic Coatings", - description: "Applied this year.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg?_wi=8", - }, - { - id: "m2", - value: "200+", - title: "Interior Deep Cleans", - description: "Completed this year.", - imageSrc: "http://img.b2bpic.net/free-photo/man-washing-his-car-garage_1157-26070.jpg?_wi=7", - }, + { id: "m1", value: "50+", title: "Ceramic Coatings", description: "Applied this year.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-exterior_23-2148194135.jpg" }, + { id: "m2", value: "200+", title: "Interior Deep Cleans", description: "Completed this year.", imageSrc: "http://img.b2bpic.net/free-photo/man-washing-his-car-garage_1157-26070.jpg" } ]} /> ); -} +} \ No newline at end of file