From 8d8e0fa0cd7f339ff5f699314c5fdbd29de26997 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 02:45:22 +0000 Subject: [PATCH] Add src/app/products/page.tsx --- src/app/products/page.tsx | 115 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 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..2852f43 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,115 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +const commonNavItems = [ + { name: "Home", href: "/" }, + { name: "Products", href: "/products" }, + { name: "Features", href: "/#features" }, + { name: "About Us", href: "/about" }, + { name: "FAQs", href: "/faqs" }, + { name: "Contact", href: "/contact" } +]; + +const commonNavbarButton = { + text: "Get Your Case", href: "/products" +}; + +const commonFooterColumns = [ + { + title: "Shop", items: [ + { label: "iPhone Cases", href: "/products#iphone" }, + { label: "Samsung Cases", href: "/products#samsung" }, + { label: "Pixel Cases", href: "/products#pixel" }, + { label: "Accessories", href: "/products#accessories" } + ] + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Features", href: "/#features" }, + { label: "Testimonials", href: "/#testimonials" }, + { label: "FAQs", href: "/faqs" } + ] + }, + { + title: "Support", items: [ + { label: "Contact Us", href: "/contact" }, + { label: "Shipping & Returns", href: "/shipping" }, + { label: "Warranty", href: "/warranty" }, + { label: "Privacy Policy", href: "/privacy" } + ] + } +]; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}