From 883103ca8f3fd647657243d904599f550fad91c0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:13:29 +0000 Subject: [PATCH] Update src/app/products/page.tsx --- src/app/products/page.tsx | 29 +++++++++++++---------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index b888c80..f1d909a 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -4,21 +4,18 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FooterBase from '@/components/sections/footer/FooterBase'; -import Link from 'next/link'; export default function ProductsPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; const footerColumns = [ { - title: "Shop", - items: [ + title: "Shop", items: [ { label: "Hookahs", href: "/products" }, { label: "Tobacco", href: "/products" }, { label: "Charcoal", href: "/products" }, @@ -26,18 +23,16 @@ export default function ProductsPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Blog", href: "/blog" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Legal", - items: [ - { label: "Privacy Policy", href: "/" }, - { label: "Terms of Service", href: "/" }, + title: "Legal", items: [ + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Service", href: "/terms" }, ], }, ]; @@ -58,7 +53,7 @@ export default function ProductsPage() { @@ -81,11 +76,13 @@ export default function ProductsPage() { /> - + ); } \ No newline at end of file