Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b68b2e9b09 | |||
| 1221f9bd3f | |||
| 72ddfcdaa2 |
257
src/app/page.tsx
257
src/app/page.tsx
@@ -8,7 +8,8 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -28,26 +29,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Inventory",
|
||||
id: "inventory",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Inventory", id: "inventory" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Cars 4 Sale"
|
||||
/>
|
||||
@@ -55,68 +41,14 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Quality Used Cars in Biggleswade"
|
||||
description="Your trusted local car dealer. We provide reliable service, hand-picked vehicles, and a hassle-free buying experience. Come visit us at Saffron Rd."
|
||||
description="Your trusted local car dealer at Saffron Rd, Biggleswade SG18 8DJ. We provide reliable service, hand-picked vehicles, and a hassle-free buying experience."
|
||||
buttons={[
|
||||
{
|
||||
text: "Browse Inventory",
|
||||
href: "#inventory",
|
||||
},
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "Browse Inventory", href: "#inventory" },
|
||||
{ text: "Call Us: 01767 601498", href: "tel:01767601498" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/stylish-elegant-old-man-car-salon_1157-31831.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-man-drinking-coffee-by-his-car_1303-31596.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-enjoying-her-financially-independence-while-buying-car_23-2149434340.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cute-family-taking-hot-drink-winter-field_1157-31347.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-twins-christmas-outfits_651396-1199.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/boy-dad-near-electric-car_23-2149171017.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by over 500+ happy drivers"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Quality Assured",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Local Heritage",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fully Inspected",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Flexible Finance",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Expert Support",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -126,22 +58,11 @@ export default function LandingPage() {
|
||||
title="Serving the Biggleswade Community"
|
||||
description="With over 20 years of experience, we pride ourselves on going above and beyond for every customer. At Cars 4 Sale, you are more than just a transaction; you are part of our motoring family."
|
||||
metrics={[
|
||||
{
|
||||
value: "4.7/5",
|
||||
title: "Google Rating",
|
||||
},
|
||||
{
|
||||
value: "20+",
|
||||
title: "Verified Reviews",
|
||||
},
|
||||
{
|
||||
value: "20y",
|
||||
title: "Trusted Service",
|
||||
},
|
||||
{ value: "4.7/5", title: "Google Rating" },
|
||||
{ value: "20+", title: "Verified Reviews" },
|
||||
{ value: "20y", title: "Trusted Service" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/handsome-elegant-man-car-salon_1157-21002.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -152,48 +73,10 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ford Focus",
|
||||
price: "£7,500",
|
||||
variant: "Hatchback",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/boy-dad-near-electric-car_23-2149171017.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Nissan Qashqai",
|
||||
price: "£12,995",
|
||||
variant: "SUV",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-her-financially-independence-while-buying-car_23-2149434356.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "BMW 3 Series",
|
||||
price: "£15,450",
|
||||
variant: "Sedan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-women-with-smartphone-near-man-looking-map-car-hood_23-2148039112.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Volkswagen Polo",
|
||||
price: "£6,800",
|
||||
variant: "Hatchback",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-couple-car-trip_23-2147935474.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Kia Sportage",
|
||||
price: "£11,200",
|
||||
variant: "SUV",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-woman-opening-car-door-long-shot_23-2148266186.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Toyota Avensis",
|
||||
price: "£5,900",
|
||||
variant: "Sedan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-headlights-gray-car_158538-8144.jpg",
|
||||
},
|
||||
{ id: "1", name: "Ford Focus", price: "£7,500", variant: "Hatchback", imageSrc: "http://img.b2bpic.net/free-photo/boy-dad-near-electric-car_23-2149171017.jpg" },
|
||||
{ id: "2", name: "Nissan Qashqai", price: "£12,995", variant: "SUV", imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-her-financially-independence-while-buying-car_23-2149434356.jpg" },
|
||||
{ id: "3", name: "BMW 3 Series", price: "£15,450", variant: "Sedan", imageSrc: "http://img.b2bpic.net/free-photo/smiling-women-with-smartphone-near-man-looking-map-car-hood_23-2148039112.jpg" },
|
||||
{ id: "4", name: "Volkswagen Polo", price: "£6,800", variant: "Hatchback", imageSrc: "http://img.b2bpic.net/free-photo/young-couple-car-trip_23-2147935474.jpg" },
|
||||
]}
|
||||
title="Our Latest Stock"
|
||||
description="Browse our hand-selected range of reliable used vehicles, thoroughly inspected for your peace of mind."
|
||||
@@ -201,63 +84,29 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
showRating={true}
|
||||
title="Customer Reviews"
|
||||
description="We value our customers. See what they say about our service in Biggleswade."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
role: "Client",
|
||||
testimonial: "Great service and made to feel welcome.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-drinking-coffee-by-his-car_1303-31596.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mark D.",
|
||||
role: "Client",
|
||||
testimonial: "Keep up the good work Clive.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-her-financially-independence-while-buying-car_23-2149434340.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily P.",
|
||||
role: "Client",
|
||||
testimonial: "He always goes above and beyond for his customers, which is so rare to find.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-family-taking-hot-drink-winter-field_1157-31347.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David W.",
|
||||
role: "Client",
|
||||
testimonial: "Fantastic local dealer. Trusted and very honest.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-twins-christmas-outfits_651396-1199.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "James R.",
|
||||
role: "Client",
|
||||
testimonial: "Smooth process, no pressure. Very happy with the car.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-drinking-coffee-by-his-car_1303-31596.jpg?_wi=2",
|
||||
},
|
||||
{ id: "1", name: "Sarah Johnson", handle: "@sarahj", rating: 5, testimonial: "Great service and made to feel welcome. A truly local business.", icon: Star },
|
||||
{ id: "2", name: "Mark D.", handle: "@markd", rating: 5, testimonial: "Keep up the good work Clive! Honest and reliable service.", icon: Star },
|
||||
{ id: "3", name: "Emily P.", handle: "@emilyp", rating: 5, testimonial: "He always goes above and beyond for his customers, which is so rare to find.", icon: Star },
|
||||
{ id: "4", name: "David W.", handle: "@davidw", rating: 4, testimonial: "Fantastic local dealer. Trusted and very honest. Would recommend.", icon: Star },
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Don't just take our word for it. Read why our local customers trust us."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Visit Us"
|
||||
title="Get in Touch"
|
||||
description="Saffron Rd, Biggleswade SG18 8DJ. We're open 9am-6pm Tue-Sat. Feel free to call us at 01767 601498 for inquiries."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/smiling-businessman-working-his-office-businessperson-professional-environment_482257-32720.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact Us"
|
||||
title="Visit Us at Saffron Rd"
|
||||
description="We are located at Saffron Rd, Biggleswade SG18 8DJ. Drop by or give us a call at 01767 601498 for any inquiries or to book a test drive."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -265,50 +114,14 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Cars 4 Sale"
|
||||
columns={[
|
||||
{
|
||||
title: "Inventory",
|
||||
items: [
|
||||
{
|
||||
label: "All Vehicles",
|
||||
href: "#inventory",
|
||||
},
|
||||
{
|
||||
label: "New Arrivals",
|
||||
href: "#inventory",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#testimonials",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Inventory", items: [{ label: "All Vehicles", href: "#inventory" }] },
|
||||
{ title: "About", items: [{ label: "Our Story", href: "#about" }, { label: "Reviews", href: "#testimonials" }] },
|
||||
{ title: "Contact", items: [{ label: "01767 601498", href: "tel:01767601498" }, { label: "Saffron Rd, Biggleswade", href: "#contact" }] },
|
||||
]}
|
||||
copyrightText="© 2024 Cars 4 Sale. All rights reserved."
|
||||
copyrightText="© 2025 Cars 4 Sale. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user