diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 252e4df..7c40139 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -1,16 +1,50 @@ "use client"; import { ThemeProvider } from "@/components/theme/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import FooterBase from "@/components/sections/footer/FooterBase"; import { ShoppingCart } from "lucide-react"; +const products = [ + { + id: "1", brand: "Automotive LED", name: "Volvo S60R LED Panel", price: "$59.99", rating: 5, + reviewCount: "128", imageSrc: "/volvo-s60r-led.jpg", imageAlt: "Volvo S60R LED Panel - Premium automotive lighting solution"}, + { + id: "2", brand: "Automotive LED", name: "Mercedes-Benz SEL LED Panel", price: "$59.99", rating: 5, + reviewCount: "156", imageSrc: "/mercedes-sel-led.jpg", imageAlt: "Mercedes-Benz SEL LED Panel - Professional grade LED lighting"}, + { + id: "3", brand: "Automotive LED", name: "BMW E30 LED Panel", price: "$59.99", rating: 5, + reviewCount: "142", imageSrc: "/bmw-e30-led.jpg", imageAlt: "BMW E30 LED Panel - Classic car lighting upgrade"}, +]; + +const footerColumns = [ + { + title: "Product", items: [ + { label: "Shop", href: "/" }, + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "#about" }, + { label: "Contact", href: "#contact" }, + { label: "Support", href: "#support" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy", href: "#privacy" }, + { label: "Terms", href: "#terms" }, + ], + }, +]; + export default function ProductsPage() { return ( - -
-
-

Our Products

-

- Premium LED panels for premium vehicles. Each panel is carefully crafted - for perfect fit and exceptional performance. -

-
- -
- { - window.location.href = "/product/volvo-s60r-led-panel"; - }, - }, - { - id: "2", name: "Mercedes Sel Led Panel", price: "$59.99", imageSrc: "/images/mercedes-sel-led.jpg", imageAlt: "Mercedes Sel LED Panel", onProductClick: () => { - window.location.href = "/product/mercedes-sel-led-panel"; - }, - }, - { - id: "3", name: "BMW e30 Led Panel", price: "$59.99", imageSrc: "/images/bmw-e30-led.jpg", imageAlt: "BMW e30 LED Panel", onProductClick: () => { - window.location.href = "/product/bmw-e30-led-panel"; - }, - }, - ]} - title="All Products" - description="Browse our complete collection of premium LED panels" - textboxLayout="default" - animationType="slide-up" - gridVariant="three-columns-all-equal-width" - useInvertedBackground={false} - /> -
-
- -
- +
- +
); }