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 ( + + + + +
+ +
+ + +
+
+ ); +} 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 +}