Update src/app/about/page.tsx

This commit is contained in:
2026-04-07 17:25:29 +00:00
parent 093fa84a75
commit 476a5b35d7

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>
@@ -59,7 +44,7 @@ export default function LandingPage() {
description="Our passion for automobiles drive our quality standards."
subdescription="Every car is treated as if it were our own, with painstaking attention to every single detail."
icon={Award}
imageSrc="http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg?_wi=7"
imageSrc="http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg"
mediaAnimation="slide-up"
/>
</div>
@@ -73,62 +58,22 @@ export default function LandingPage() {
description="Meet the detailers behind the sparkle."
groups={[
{
id: "team",
groupTitle: "Lead Detailers",
members: [
{
id: "1",
title: "Marc P.",
subtitle: "Lead Technician",
detail: "10 years in the automotive industry.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-car-dealership_23-2148130216.jpg?_wi=3",
},
{
id: "2",
title: "Claire L.",
subtitle: "Quality Manager",
detail: "Specialist in paint restoration.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-hugging-car-car-showrrom_1303-15165.jpg?_wi=2",
},
id: "team", groupTitle: "Lead Detailers", members: [
{ id: "1", title: "Marc P.", subtitle: "Lead Technician", detail: "10 years in the automotive industry." },
{ id: "2", title: "Claire L.", subtitle: "Quality Manager", detail: "Specialist in paint restoration." },
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg?_wi=4",
imageAlt: "car exterior polish finish",
},
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg", imageAlt: "car exterior polish finish"},
]}
/>
</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=8"
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>