From ebc70c67dd3e15df681b117d6d33a6f093b295a7 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 13:49:30 +0000 Subject: [PATCH 1/2] Add src/app/inventory/page.tsx --- src/app/inventory/page.tsx | 68 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/app/inventory/page.tsx diff --git a/src/app/inventory/page.tsx b/src/app/inventory/page.tsx new file mode 100644 index 0000000..cd2f671 --- /dev/null +++ b/src/app/inventory/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function InventoryPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} From 4e95b870c1e640de6360e0000a0bb7cf57fe305f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 13:49:30 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 27 ++++----------------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1eab6b0..9c3d58d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LandingPage() { { name: "Home", id: "home" }, { name: "Stats", id: "stats" }, { name: "Featured", id: "featured" }, - { name: "Inventory", id: "inventory" }, + { name: "Inventory", id: "/inventory" }, { name: "About", id: "about" }, { name: "Team", id: "team" }, { name: "Testimonial", id: "testimonial" }, @@ -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={[ @@ -98,25 +98,6 @@ export default function LandingPage() { /> -
- -
-
@@ -187,4 +168,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}