Update src/app/services/page.tsx

This commit is contained in:
2026-04-07 17:25:30 +00:00
parent 27c540f4b9
commit 3194e33a5b

View File

@@ -26,28 +26,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="CleaningcarsZuka"
button={{
text: "Get a Quote",
href: "/contact",
}}
button={{ text: "Get a Quote", href: "/contact" }}
/>
</div>
@@ -58,27 +43,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
features={[
{
title: "Interior Detailing",
description: "Steam cleaning, upholstery treatment, and deep vacuuming.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg?_wi=2",
titleIconSrc: "Sparkles",
buttonText: "Learn More",
},
{
title: "Exterior Wash",
description: "High-pressure wash, hand wax, and paint protection.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg?_wi=2",
titleIconSrc: "Zap",
buttonText: "Learn More",
},
{
title: "Full Package",
description: "The complete overhaul for your car inside and out.",
imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580547.jpg?_wi=2",
titleIconSrc: "Star",
buttonText: "Learn More",
},
{ title: "Interior Detailing", description: "Steam cleaning, upholstery treatment, and deep vacuuming.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg", titleIconSrc: "Sparkles", buttonText: "Learn More" },
{ title: "Exterior Wash", description: "High-pressure wash, hand wax, and paint protection.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg", titleIconSrc: "Zap", buttonText: "Learn More" },
{ title: "Full Package", description: "The complete overhaul for your car inside and out.", imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580547.jpg", titleIconSrc: "Star", buttonText: "Learn More" },
]}
title="Our Services"
description="Comprehensive care for your vehicle's maintenance and aesthetics."
@@ -93,71 +60,19 @@ export default function LandingPage() {
title="Why Our Process Works"
description="Precision detailing methods for lasting results."
features={[
{
title: "Microfiber Safety",
description: "We only use premium non-scratch cloths.",
icon: Shield,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg?_wi=3",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg?_wi=3",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg?_wi=4",
imageAlt: "car detailing shop interior",
},
{
title: "pH Balanced Chemicals",
description: "Safe for every paint type.",
icon: Droplet,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580547.jpg?_wi=3",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg?_wi=5",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg?_wi=4",
imageAlt: "car interior detailing cleaning",
},
{ title: "Microfiber Safety", description: "We only use premium non-scratch cloths.", icon: Shield, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg" }], imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg", imageAlt: "car detailing shop interior" },
{ title: "pH Balanced Chemicals", description: "Safe for every paint type.", icon: Droplet, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580547.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg" }], imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg", imageAlt: "car interior detailing cleaning" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg?_wi=6"
imageSrc="http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg"
logoText="CleaningcarsZuka"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Services",
items: [
{
label: "Interior",
href: "/services",
},
{
label: "Exterior",
href: "/services",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Interior", href: "/services" }, { label: "Exterior", href: "/services" }] },
]}
/>
</div>