Merge version_1 into main #2
@@ -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>
|
||||
|
||||
210
src/app/page.tsx
210
src/app/page.tsx
@@ -28,118 +28,46 @@ 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>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
title="Professional Car Detailing in Geneva"
|
||||
description="Interior & exterior cleaning that makes your car feel like new. Expert care for your vehicle in the heart of Geneva."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+41223295050",
|
||||
},
|
||||
{
|
||||
text: "Get a Quote",
|
||||
href: "/contact",
|
||||
},
|
||||
{ text: "Call Now", href: "tel:+41223295050" },
|
||||
{ text: "Get a Quote", href: "/contact" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg?_wi=1",
|
||||
imageAlt: "Professional car detailing",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg?_wi=1",
|
||||
imageAlt: "Interior cleaning",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg?_wi=1",
|
||||
imageAlt: "Exterior polish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580547.jpg?_wi=1",
|
||||
imageAlt: "Full detailing",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg?_wi=2",
|
||||
imageAlt: "Car shop",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg", imageAlt: "Professional car detailing" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/closeup-drumsticks-blurred-background_169016-23678.jpg", imageAlt: "Interior cleaning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193627.jpg", imageAlt: "Exterior polish" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580547.jpg", imageAlt: "Full detailing" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-s-hand-is-cleaning-waxing-car_1150-6114.jpg", imageAlt: "Car shop" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "@sarah.geneva",
|
||||
testimonial: "Amazing results, my car looks brand new!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-car-dealership_23-2148130216.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael C.",
|
||||
handle: "@m.chen",
|
||||
testimonial: "Reliable and fast, highly recommend them.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
handle: "@emily.r",
|
||||
testimonial: "Best detailing service in town.",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-hugging-car-car-showrrom_1303-15165.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
handle: "@david.k",
|
||||
testimonial: "Very professional staff and great attention to detail.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-black-mechanic-taking-notes-while-talking-customer-auto-repair-shop_637285-11587.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Anna P.",
|
||||
handle: "@anna.p",
|
||||
testimonial: "Great service, consistently reliable results.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-car-dealership_23-2148130216.jpg?_wi=2",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", handle: "@sarah.geneva", testimonial: "Amazing results, my car looks brand new!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-man-car-dealership_23-2148130216.jpg" },
|
||||
{ id: "2", name: "Michael C.", handle: "@m.chen", testimonial: "Reliable and fast, highly recommend them.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg" },
|
||||
{ id: "3", name: "Emily R.", handle: "@emily.r", testimonial: "Best detailing service in town.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-hugging-car-car-showrrom_1303-15165.jpg" },
|
||||
{ id: "4", name: "David K.", handle: "@david.k", testimonial: "Very professional staff and great attention to detail.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-black-mechanic-taking-notes-while-talking-customer-auto-repair-shop_637285-11587.jpg" },
|
||||
{ id: "5", name: "Anna P.", handle: "@anna.p", testimonial: "Great service, consistently reliable results.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-man-car-dealership_23-2148130216.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Trusted by Geneva Drivers"
|
||||
@@ -155,41 +83,9 @@ export default function LandingPage() {
|
||||
title="Transparent Pricing"
|
||||
description="Choose the best detailing package for your needs."
|
||||
plans={[
|
||||
{
|
||||
id: "basic",
|
||||
badge: "Essential",
|
||||
price: "150 CHF",
|
||||
subtitle: "Quick refresh for your car",
|
||||
features: [
|
||||
"Hand wash",
|
||||
"Interior vacuum",
|
||||
"Window cleaning",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pro",
|
||||
badge: "Most Popular",
|
||||
price: "280 CHF",
|
||||
subtitle: "Deep clean and protection",
|
||||
features: [
|
||||
"Everything in Basic",
|
||||
"Steam clean",
|
||||
"Hand wax",
|
||||
"Rim cleaning",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "elite",
|
||||
badge: "Premium",
|
||||
price: "450 CHF",
|
||||
subtitle: "Showroom quality finish",
|
||||
features: [
|
||||
"Full engine cleaning",
|
||||
"Leather treatment",
|
||||
"Ceramic sealant",
|
||||
"Full interior shampoo",
|
||||
],
|
||||
},
|
||||
{ id: "basic", badge: "Essential", price: "150 CHF", subtitle: "Quick refresh for your car", features: ["Hand wash", "Interior vacuum", "Window cleaning"] },
|
||||
{ id: "pro", badge: "Most Popular", price: "280 CHF", subtitle: "Deep clean and protection", features: ["Everything in Basic", "Steam clean", "Hand wax", "Rim cleaning"] },
|
||||
{ id: "elite", badge: "Premium", price: "450 CHF", subtitle: "Showroom quality finish", features: ["Full engine cleaning", "Leather treatment", "Ceramic sealant", "Full interior shampoo"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -202,26 +98,10 @@ export default function LandingPage() {
|
||||
description="Everything you need to know about our detailing process in Geneva."
|
||||
faqsAnimation="blur-reveal"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How long does a full detail take?",
|
||||
content: "Typically, a full detail takes about 4-6 hours depending on the condition of your vehicle.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer mobile services?",
|
||||
content: "Yes, we can perform select services at your location within the Geneva area.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Are your cleaning products safe?",
|
||||
content: "We use only professional-grade, eco-friendly cleaning supplies that are safe for both your car and the environment.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Should I book in advance?",
|
||||
content: "Yes, we recommend booking at least 3 days in advance to ensure your preferred time slot.",
|
||||
},
|
||||
{ id: "1", title: "How long does a full detail take?", content: "Typically, a full detail takes about 4-6 hours depending on the condition of your vehicle." },
|
||||
{ id: "2", title: "Do you offer mobile services?", content: "Yes, we can perform select services at your location within the Geneva area." },
|
||||
{ id: "3", title: "Are your cleaning products safe?", content: "We use only professional-grade, eco-friendly cleaning supplies that are safe for both your car and the environment." },
|
||||
{ id: "4", title: "Should I book in advance?", content: "Yes, we recommend booking at least 3 days in advance to ensure your preferred time slot." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -232,47 +112,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Trusted by Local Partners"
|
||||
description="Proudly working with Geneva's most respected automotive groups."
|
||||
names={[
|
||||
"Geneva Motors",
|
||||
"Alpine Car Group",
|
||||
"Lakeside Auto",
|
||||
"Swiss Precision Service",
|
||||
"Elite Auto Hub",
|
||||
]}
|
||||
names={["Geneva Motors", "Alpine Car Group", "Lakeside Auto", "Swiss Precision Service", "Elite Auto Hub"]}
|
||||
/>
|
||||
</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=3"
|
||||
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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user