diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..865e4a6 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,76 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; + +export default function ProductsPage() { + const unifiedNavItems = [ + { name: 'Home', id: '/' }, + { name: 'Products', id: '/products' }, + { name: 'Shop', id: '/shop' }, + { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'Contact', id: '/#contact' } + ]; + + const unifiedFooterColumns = [ + { title: 'Explore', items: [{ label: 'Home', href: '/' }, { label: 'Products', href: '/products' }, { label: 'About Us', href: '/#about' }] }, + { title: 'Connect', items: [{ label: 'Contact', href: '/#contact' }, { label: 'Instagram', href: 'https://www.instagram.com/pia.coffeeshop' }] }, + { title: 'Legal', items: [{ label: 'Privacy Policy', href: '/privacy' }, { label: 'Terms of Service', href: '/terms' }] } + ]; + + return ( + + + +
+ +
+ + +
+ ); +}