Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 690beb4fc2 | |||
| 8c13a2d1e8 |
152
src/app/page.tsx
152
src/app/page.tsx
@@ -30,91 +30,58 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Testimonials",
|
name: "Testimonials", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="KOKO CAR WASH"
|
brandName="KOKO CAR WASH"
|
||||||
button={{
|
button={{
|
||||||
text: "Book Now",
|
text: "Book Now", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Excellence in Automotive Luxury"
|
title="Excellence in Automotive Luxury"
|
||||||
description="Experience the gold standard of detailing at Koko Car Wash Valencia. Where meticulous care meets unparalleled precision for the world's finest vehicles."
|
description="Experience the gold standard of detailing at Koko Car Wash Valencia. Where meticulous care meets unparalleled precision for the world's finest vehicles."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/new-year-spend-with-friends-celebrating_23-2149196973.jpg",
|
src: "http://img.b2bpic.net/free-photo/new-year-spend-with-friends-celebrating_23-2149196973.jpg", alt: "Client 1"},
|
||||||
alt: "Client 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-serious-man-with-beard-restaurant_1262-3602.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-serious-man-with-beard-restaurant_1262-3602.jpg", alt: "Client 2"},
|
||||||
alt: "Client 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4745.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4745.jpg", alt: "Client 3"},
|
||||||
alt: "Client 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-happy-man-using-mobile-phone-while-making-contactless-check-payment-pub_637285-4125.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-happy-man-using-mobile-phone-while-making-contactless-check-payment-pub_637285-4125.jpg", alt: "Client 4"},
|
||||||
alt: "Client 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/elderly-business-woman-outdoors-wearing-green-suit_1303-29526.jpg",
|
src: "http://img.b2bpic.net/free-photo/elderly-business-woman-outdoors-wearing-green-suit_1303-29526.jpg", alt: "Client 5"},
|
||||||
alt: "Client 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Schedule Your Detail",
|
text: "Schedule Your Detail", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ luxury vehicle owners"
|
avatarText="Trusted by 500+ luxury vehicle owners"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Ceramic Coating", icon: Shield,
|
||||||
text: "Ceramic Coating",
|
|
||||||
icon: Shield,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Interior Restoration", icon: Sparkles,
|
||||||
text: "Interior Restoration",
|
|
||||||
icon: Sparkles,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Paint Correction", icon: Award,
|
||||||
text: "Paint Correction",
|
|
||||||
icon: Award,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Leather Conditioning", icon: Leaf,
|
||||||
text: "Leather Conditioning",
|
|
||||||
icon: Leaf,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Bespoke Finishing", icon: Star,
|
||||||
text: "Bespoke Finishing",
|
|
||||||
icon: Star,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -127,9 +94,7 @@ export default function LandingPage() {
|
|||||||
title="Precision and Passion"
|
title="Precision and Passion"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -141,19 +106,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Exterior Polishing",
|
title: "Exterior Polishing", description: "Reviving the showroom shine through advanced polishing and paint correction techniques.", icon: Sparkles,
|
||||||
description: "Reviving the showroom shine through advanced polishing and paint correction techniques.",
|
|
||||||
icon: Sparkles,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Interior Detailing",
|
title: "Interior Detailing", description: "Deep-cleansing treatments for leather, fabric, and surfaces to restore your cabin's original brilliance.", icon: Shield,
|
||||||
description: "Deep-cleansing treatments for leather, fabric, and surfaces to restore your cabin's original brilliance.",
|
|
||||||
icon: Shield,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Luxury Treatments",
|
title: "Luxury Treatments", description: "Exclusive care packages for high-performance vehicles, including ceramic protection and bespoke finishes.", icon: Award,
|
||||||
description: "Exclusive care packages for high-performance vehicles, including ceramic protection and bespoke finishes.",
|
|
||||||
icon: Award,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Bespoke Car Care Services"
|
title="Bespoke Car Care Services"
|
||||||
@@ -167,45 +126,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Alejandro V.", role: "Collector", quote: "The gold standard in Valencia. Simply flawless.", title: "Impeccable service", imageSrc: "http://img.b2bpic.net/free-photo/new-year-spend-with-friends-celebrating_23-2149196973.jpg"},
|
||||||
name: "Alejandro V.",
|
|
||||||
role: "Collector",
|
|
||||||
quote: "The gold standard in Valencia. Simply flawless.",
|
|
||||||
title: "Impeccable service",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/new-year-spend-with-friends-celebrating_23-2149196973.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Elena M.", role: "Professional", quote: "Koko treated my vehicle like a work of art.", title: "True professionals", imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-man-with-beard-restaurant_1262-3602.jpg"},
|
||||||
name: "Elena M.",
|
|
||||||
role: "Professional",
|
|
||||||
quote: "Koko treated my vehicle like a work of art.",
|
|
||||||
title: "True professionals",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-serious-man-with-beard-restaurant_1262-3602.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Javier R.", role: "Enthusiast", quote: "The attention to detail is beyond anything I have seen.", title: "Outstanding quality", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4745.jpg"},
|
||||||
name: "Javier R.",
|
|
||||||
role: "Enthusiast",
|
|
||||||
quote: "The attention to detail is beyond anything I have seen.",
|
|
||||||
title: "Outstanding quality",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-business-woman_158595-4745.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Lucia P.", role: "Entrepreneur", quote: "Excellence defined. My car has never looked this good.", title: "Exquisite care", imageSrc: "http://img.b2bpic.net/free-photo/young-happy-man-using-mobile-phone-while-making-contactless-check-payment-pub_637285-4125.jpg"},
|
||||||
name: "Lucia P.",
|
|
||||||
role: "Entrepreneur",
|
|
||||||
quote: "Excellence defined. My car has never looked this good.",
|
|
||||||
title: "Exquisite care",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-man-using-mobile-phone-while-making-contactless-check-payment-pub_637285-4125.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Carlos G.", role: "Architect", quote: "Unrivaled expertise and meticulous perfection.", title: "Best in class", imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-outdoors-wearing-green-suit_1303-29526.jpg"},
|
||||||
name: "Carlos G.",
|
|
||||||
role: "Architect",
|
|
||||||
quote: "Unrivaled expertise and meticulous perfection.",
|
|
||||||
title: "Best in class",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-outdoors-wearing-green-suit_1303-29526.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="A Standard of Distinction"
|
title="A Standard of Distinction"
|
||||||
description="Trusted by Valencia’s most discerning car owners."
|
description="Trusted by Valencia’s most discerning car owners."
|
||||||
@@ -216,14 +145,11 @@ export default function LandingPage() {
|
|||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
text="Are you ready to redefine your car care journey? Book your bespoke detailing experience with us in Valencia today."
|
text="Are you ready to redefine your car care journey? Book your bespoke detailing experience with us in Valencia today."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Request Booking",
|
text: "Request Booking", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -232,29 +158,19 @@ export default function LandingPage() {
|
|||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user