Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e623ac75b | |||
| 89c83747c2 | |||
| a28135d2c7 |
207
src/app/page.tsx
207
src/app/page.tsx
@@ -29,21 +29,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Why Chip X",
|
name: "Why Chip X", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "reviews"},
|
||||||
id: "reviews",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Call Now",
|
name: "Call Now", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Chip X"
|
brandName="Chip X"
|
||||||
/>
|
/>
|
||||||
@@ -52,62 +44,39 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboard
|
<HeroBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
title="Premium Mobile Chip & Scratch Repair"
|
title="Premium Mobile Chip & Scratch Repair"
|
||||||
description="Don't let chips ruin your car's value. Same-day repair at your doorstep with luxury results."
|
description="Don't let chips ruin your car's value. Same-day repair at your doorstep with luxury results."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call 079 935 4291",
|
text: "Call 079 935 4291", href: "tel:0799354291"},
|
||||||
href: "tel:0799354291",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31509.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31509.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-satisfied-africanamerican-woman-showing-okay-sign-smiling-recommending-something-good_1258-179439.jpg",
|
src: "http://img.b2bpic.net/free-photo/closeup-satisfied-africanamerican-woman-showing-okay-sign-smiling-recommending-something-good_1258-179439.jpg", alt: "Happy customer"},
|
||||||
alt: "Happy customer",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1674.jpg", alt: "Professional client"},
|
||||||
alt: "Professional client",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/man-having-mobile-talk-while-waiting-electric-car-charge-station-eco-cars_1157-50634.jpg",
|
src: "http://img.b2bpic.net/free-photo/man-having-mobile-talk-while-waiting-electric-car-charge-station-eco-cars_1157-50634.jpg", alt: "Satisfied owner"},
|
||||||
alt: "Satisfied owner",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153829.jpg",
|
src: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153829.jpg", alt: "Luxury car owner"},
|
||||||
alt: "Luxury car owner",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-satisfied-africanamerican-woman-showing-okay-sign-smiling-recommending-something-good_1258-179439.jpg",
|
src: "http://img.b2bpic.net/free-photo/closeup-satisfied-africanamerican-woman-showing-okay-sign-smiling-recommending-something-good_1258-179439.jpg", alt: "Returning client"},
|
||||||
alt: "Returning client",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by 500+ luxury vehicle owners"
|
avatarText="Trusted by 500+ luxury vehicle owners"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Factory Match Guaranteed"},
|
||||||
text: "Factory Match Guaranteed",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Same-Day Mobile Service"},
|
||||||
text: "Same-Day Mobile Service",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "High-End Results"},
|
||||||
text: "High-End Results",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Convenient & Clean"},
|
||||||
text: "Convenient & Clean",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Professional Standards"},
|
||||||
text: "Professional Standards",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -119,64 +88,28 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "s1",
|
id: "s1", label: "Body", title: "Stone Chip Repair", items: [
|
||||||
label: "Body",
|
"Deep impact repair", "Blending technology", "Factory color match"],
|
||||||
title: "Stone Chip Repair",
|
|
||||||
items: [
|
|
||||||
"Deep impact repair",
|
|
||||||
"Blending technology",
|
|
||||||
"Factory color match",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "s2",
|
id: "s2", label: "Body", title: "Bumper Scuffs", items: [
|
||||||
label: "Body",
|
"Light scuff removal", "Deep scratch filling", "Seamless finish"],
|
||||||
title: "Bumper Scuffs",
|
|
||||||
items: [
|
|
||||||
"Light scuff removal",
|
|
||||||
"Deep scratch filling",
|
|
||||||
"Seamless finish",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "s3",
|
id: "s3", label: "Body", title: "Mirror Caps", items: [
|
||||||
label: "Body",
|
"Scuff polishing", "Color correction", "Perfect match"],
|
||||||
title: "Mirror Caps",
|
|
||||||
items: [
|
|
||||||
"Scuff polishing",
|
|
||||||
"Color correction",
|
|
||||||
"Perfect match",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "s4",
|
id: "s4", label: "Body", title: "Door Edges", items: [
|
||||||
label: "Body",
|
"Chip prevention", "Touch-up artistry", "Invisible finish"],
|
||||||
title: "Door Edges",
|
|
||||||
items: [
|
|
||||||
"Chip prevention",
|
|
||||||
"Touch-up artistry",
|
|
||||||
"Invisible finish",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "s5",
|
id: "s5", label: "Body", title: "Scratch Removal", items: [
|
||||||
label: "Body",
|
"Surface buffing", "Clear coat repair", "Deep scratch focus"],
|
||||||
title: "Scratch Removal",
|
|
||||||
items: [
|
|
||||||
"Surface buffing",
|
|
||||||
"Clear coat repair",
|
|
||||||
"Deep scratch focus",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "s6",
|
id: "s6", label: "Body", title: "Paint Detailing", items: [
|
||||||
label: "Body",
|
"Polishing", "Wax protection", "Gloss restoration"],
|
||||||
title: "Paint Detailing",
|
|
||||||
items: [
|
|
||||||
"Polishing",
|
|
||||||
"Wax protection",
|
|
||||||
"Gloss restoration",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Our Specialized Repair Services"
|
title="Our Specialized Repair Services"
|
||||||
@@ -189,20 +122,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
heading={[
|
heading={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", content: "The Chip X Difference: Expertise in Every Drop"},
|
||||||
content: "The Chip X Difference: Expertise in Every Drop",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image", src: "http://img.b2bpic.net/free-photo/man-wrapping-car-inside-full-shot_23-2149385683.jpg", alt: "Professional repair"},
|
||||||
src: "http://img.b2bpic.net/free-photo/man-wrapping-car-inside-full-shot_23-2149385683.jpg",
|
|
||||||
alt: "Professional repair",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Charlie Now",
|
text: "Call Charlie Now", href: "tel:0799354291"},
|
||||||
href: "tel:0799354291",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -213,45 +139,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", title: "Amazing Results", quote: "My car looks brand new after the stone chip repair.", name: "Sarah J.", role: "Sedan Owner", imageSrc: "http://img.b2bpic.net/free-photo/back-view-grey-car-standing-bridge_114579-4084.jpg?_wi=1"},
|
||||||
title: "Amazing Results",
|
|
||||||
quote: "My car looks brand new after the stone chip repair.",
|
|
||||||
name: "Sarah J.",
|
|
||||||
role: "Sedan Owner",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-grey-car-standing-bridge_114579-4084.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", title: "Perfect Color Match", quote: "I couldn't even find where the scratch was. Incredible.", name: "Michael T.", role: "Sports Car Owner", imageSrc: "http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487036.jpg"},
|
||||||
title: "Perfect Color Match",
|
|
||||||
quote: "I couldn't even find where the scratch was. Incredible.",
|
|
||||||
name: "Michael T.",
|
|
||||||
role: "Sports Car Owner",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/service-worker-painting-car-auto-service_23-2149487036.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", title: "So Convenient", quote: "Same-day service at my home? Unbeatable experience.", name: "Elena R.", role: "Luxury SUV Owner", imageSrc: "http://img.b2bpic.net/free-photo/man-polish-car-garage_1157-36588.jpg"},
|
||||||
title: "So Convenient",
|
|
||||||
quote: "Same-day service at my home? Unbeatable experience.",
|
|
||||||
name: "Elena R.",
|
|
||||||
role: "Luxury SUV Owner",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-polish-car-garage_1157-36588.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", title: "Pro Quality", quote: "The finish is flawless. Highly recommend Chip X.", name: "David L.", role: "Coupe Owner", imageSrc: "http://img.b2bpic.net/free-photo/little-smiling-girl-is-curious-about-car-s-engine-auto-service-with-her-mother-which-is-doing-man-s-job_613910-17098.jpg"},
|
||||||
title: "Pro Quality",
|
|
||||||
quote: "The finish is flawless. Highly recommend Chip X.",
|
|
||||||
name: "David L.",
|
|
||||||
role: "Coupe Owner",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/little-smiling-girl-is-curious-about-car-s-engine-auto-service-with-her-mother-which-is-doing-man-s-job_613910-17098.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", title: "Exceptional", quote: "Expertise you can trust. The attention to detail is unmatched.", name: "Mark S.", role: "Collector", imageSrc: "http://img.b2bpic.net/free-photo/back-view-grey-car-standing-bridge_114579-4084.jpg?_wi=2"},
|
||||||
title: "Exceptional",
|
|
||||||
quote: "Expertise you can trust. The attention to detail is unmatched.",
|
|
||||||
name: "Mark S.",
|
|
||||||
role: "Collector",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/back-view-grey-car-standing-bridge_114579-4084.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Trusted by Car Enthusiasts"
|
title="Trusted by Car Enthusiasts"
|
||||||
description="See why locals trust Chip X for their luxury vehicles."
|
description="See why locals trust Chip X for their luxury vehicles."
|
||||||
@@ -262,16 +158,13 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
tag="Ready to restore your car?"
|
tag="Ready to restore your car?"
|
||||||
title="Don't let chips spread."
|
title="Don't let chips spread."
|
||||||
description="Contact Chip X for a quote. Professional mobile service right to your door."
|
description="Contact Chip X for a quote. Professional mobile service right to your door."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call 079 935 4291",
|
text: "Call 079 935 4291", href: "tel:0799354291"},
|
||||||
href: "tel:0799354291",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -280,29 +173,19 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Service",
|
title: "Service", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Book Now",
|
label: "Book Now", href: "tel:0799354291"},
|
||||||
href: "tel:0799354291",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Our Process",
|
label: "Our Process", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Testimonials",
|
label: "Testimonials", href: "#reviews"},
|
||||||
href: "#reviews",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -312,4 +195,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user