Merge version_5 into main #6

Merged
bender merged 1 commits from version_5 into main 2026-04-20 13:48:01 +00:00

View File

@@ -56,7 +56,7 @@ export default function LandingPage() {
{ name: "Sarah P.", handle: "@sarahp", testimonial: "Attention to detail is unmatched. I won't buy a car anywhere else.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg" },
{ name: "David W.", handle: "@davidw", testimonial: "The professionalism here is simply outstanding.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-black-man-with-crossed-arms-wearing-wool-suit_613910-1866.jpg" }
]}
buttons={[{ text: "Browse Inventory", href: "#inventory" }, { text: "Book Test Drive", href: "#contact" }]}
buttons={[{ text: "Browse Inventory", href: "inventory" }, { text: "Book Test Drive", href: "#contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/woman-enjoying-her-financially-independence-while-buying-car_23-2149434336.jpg"
imageAlt="Luxury car showroom"
avatars={[
@@ -179,7 +179,7 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Ben Auto Sales"
columns={[
{ title: "Navigate", items: [{ label: "Home", href: "#home" }, { label: "Inventory", href: "#inventory" }, { label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] },
{ title: "Navigate", items: [{ label: "Home", href: "#home" }, { label: "Inventory", href: "inventory" }, { label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
]}
/>
@@ -187,4 +187,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}