Add src/app/products/page.tsx

This commit is contained in:
2026-03-09 09:36:23 +00:00
parent a62cfb096e
commit c32f1c4da6

83
src/app/products/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<NavbarStyleFullscreen
navItems={navItems}
brandName="Webild"
bottomLeftText="Global Community"
bottomRightText="hello@example.com"
/>
<div id="products" data-section="products" className="py-20">
<ProductCardOne
products={products}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
title="Premium LED Panels"
description="High-quality LED panel solutions for automotive applications. Professional-grade lighting for Volvo, Mercedes, and BMW vehicles."
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<footer className="mt-20">
<FooterCard
logoText="Webild"
copyrightText="© 2025 | Webild"
/>
</footer>
</ThemeProvider>
);
}