diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..32eafe8 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,83 @@ +'use client'; + +import { ThemeProvider } from '@/components/theme/ThemeProvider'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ShoppingCart } from 'lucide-react'; + +const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Products', id: '/products' }, + { name: 'About', id: '#about' }, + { name: 'Services', id: '#services' }, + { name: 'Contact', id: '#contact' }, +]; + +const products = [ + { + id: '1', + name: 'Volvo S60R Led Panel', + price: '$59.99', + imageSrc: '/products/volvo-s60r.jpg', + imageAlt: 'Volvo S60R Led Panel', + onProductClick: () => console.log('Volvo S60R clicked'), + }, + { + id: '2', + name: 'Mercedes Sel Led Panel', + price: '$59.99', + imageSrc: '/products/mercedes-sel.jpg', + imageAlt: 'Mercedes Sel Led Panel', + onProductClick: () => console.log('Mercedes Sel clicked'), + }, + { + id: '3', + name: 'BMW e30 Led Panel', + price: '$59.99', + imageSrc: '/products/bmw-e30.jpg', + imageAlt: 'BMW e30 Led Panel', + onProductClick: () => console.log('BMW e30 clicked'), + }, +]; + +export default function ProductsPage() { + return ( + + +
+ +
+ +
+ ); +}