Update src/app/inventory/page.tsx

This commit is contained in:
2026-03-03 22:09:35 +00:00
parent d65a3e8550
commit da47c03c18

View File

@@ -19,24 +19,21 @@ export default function InventoryPage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "How It Works", href: "/how-it-works" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Browse",
items: [
title: "Browse", items: [
{ label: "Inventory", href: "/inventory" },
{ label: "Mail Route Vehicles", href: "/mail-route-vehicles" },
{ label: "FAQ", href: "#faq" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Financing Terms", href: "#" },
@@ -59,7 +56,8 @@ export default function InventoryPage() {
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="JDM Imports"
brandName="Ultraspeed"
brandLogo="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AS9gOyc8R9tNGil9EtTzxBJzBv/uploaded-1772575677052-5rfflgk7.png"
navItems={navItems}
button={{ text: "Contact Us", href: "/contact" }}
animateOnLoad={true}
@@ -76,7 +74,7 @@ export default function InventoryPage() {
{ text: "Back to Home", href: "/" },
]}
imageSrc="http://img.b2bpic.net/free-photo/man-sits-blue-bmw-street_1304-3191.jpg?_wi=2"
imageAlt="JDM inventory showcase"
imageAlt="Japanese inventory showcase"
mediaAnimation="slide-up"
tagAnimation="slide-up"
buttonAnimation="slide-up"
@@ -89,28 +87,13 @@ export default function InventoryPage() {
description="Browse our available vehicles. Filter by price, model year, or type to find your perfect match. Each vehicle includes complete documentation and is ready for immediate purchase."
products={[
{
id: "1",
name: "2019 Nissan Skyline GT-R R35",
price: "$89,500",
imageSrc: "http://img.b2bpic.net/free-photo/black-sport-car-back-vire-motor-gas-pipes-blank-space-registration-number_114579-1167.jpg?_wi=2",
imageAlt: "2019 Nissan Skyline GT-R R35",
initialQuantity: 1,
id: "1", name: "2019 Nissan Skyline GT-R R35", price: "$89,500", imageSrc: "http://img.b2bpic.net/free-photo/black-sport-car-back-vire-motor-gas-pipes-blank-space-registration-number_114579-1167.jpg?_wi=2", imageAlt: "2019 Nissan Skyline GT-R R35", initialQuantity: 1,
},
{
id: "2",
name: "2020 Subaru WRX STI",
price: "$45,200",
imageSrc: "http://img.b2bpic.net/free-photo/yellow-sport-car-with-black-autotuning-high-speed-drive_114579-5058.jpg?_wi=2",
imageAlt: "2020 Subaru WRX STI",
initialQuantity: 1,
id: "2", name: "2020 Subaru WRX STI", price: "$45,200", imageSrc: "http://img.b2bpic.net/free-photo/yellow-sport-car-with-black-autotuning-high-speed-drive_114579-5058.jpg?_wi=2", imageAlt: "2020 Subaru WRX STI", initialQuantity: 1,
},
{
id: "3",
name: "2021 Mazda RX-7 FD",
price: "$72,000",
imageSrc: "http://img.b2bpic.net/free-photo/black-cabriolet-sport-sedan-car-with-two-yellow-stripes_114579-1168.jpg?_wi=2",
imageAlt: "2021 Mazda RX-7 FD",
initialQuantity: 1,
id: "3", name: "2021 Mazda RX-7 FD", price: "$72,000", imageSrc: "http://img.b2bpic.net/free-photo/black-cabriolet-sport-sedan-car-with-two-yellow-stripes_114579-1168.jpg?_wi=2", imageAlt: "2021 Mazda RX-7 FD", initialQuantity: 1,
},
]}
animationType="slide-up"
@@ -143,12 +126,12 @@ export default function InventoryPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/red-steel-tool-box-garage_613910-13485.jpg?_wi=2"
imageAlt="JDM automotive background"
logoText="JDM Imports"
copyrightText="© 2025 JDM Imports. All rights reserved."
imageAlt="Ultraspeed automotive background"
logoText="Ultraspeed"
copyrightText="© 2025 Ultraspeed. All rights reserved."
columns={footerColumns}
/>
</div>
</ThemeProvider>
);
}
}