From e6e7fab0a28f606ed50f0fee91930b1b933f7d52 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 16:38:07 +0000 Subject: [PATCH] Add src/app/products/page.tsx --- src/app/products/page.tsx | 92 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 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..bcedd80 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,92 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function ProductsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/products" }, + { name: "Features", id: "#features" }, + { name: "About Us", id: "#about" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Blog", id: "#blog" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" }, + { name: "Careers", id: "/careers" }, + { name: "Shipping & Returns", id: "/shipping-returns" }, + { name: "Privacy Policy", id: "/privacy-policy" } + ]; + + const footerColumns = [ + { + title: "Shop", items: [ + { label: "New Arrivals", href: "/products" }, + { label: "Collections", href: "#features" }, + { label: "Best Sellers", href: "/products" }, + { label: "Sale", href: "/products" } + ] + }, + { + title: "About", items: [ + { label: "Our Story", href: "#about" }, + { label: "Sustainability", href: "#features" }, + { label: "Testimonials", href: "#testimonials" }, + { label: "Careers", href: "/careers" } + ] + }, + { + title: "Support", items: [ + { label: "FAQ", href: "#faq" }, + { label: "Contact Us", href: "#contact" }, + { label: "Shipping & Returns", href: "/shipping-returns" }, + { label: "Privacy Policy", href: "/privacy-policy" } + ] + } + ]; + + return ( + + + +
+

+ Our Products +

+

+ Explore our wide range of premium apparel. +

+
+ +
+
+ ); +} \ No newline at end of file