From b320e5372d0a73795c1b9eebf7f8f82d17b03407 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 06:49:19 +0000 Subject: [PATCH] Add src/app/products/page.tsx --- src/app/products/page.tsx | 76 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 src/app/products/page.tsx 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 ( + + + +
+ +
+ + +
+ ); +}