From 82b50a02de530b813b29f738b27ea42ed1811114 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 11:39:23 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 09cfba8..e53bb30 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -31,12 +31,12 @@ export default function BlogPage() { brandName="Hookah Haven" navItems={[ { name: "Home", id: "/" }, - { name: "Products", id: "products" }, - { name: "About", id: "about" }, - { name: "Features", id: "features" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Products", id: "/#products" }, + { name: "About", id: "/#about" }, + { name: "Features", id: "/#features" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contact", id: "/#contact" }, ]} /> @@ -64,17 +64,17 @@ export default function BlogPage() { columns={[ { title: "Shop", items: [ - { label: "Hookahs", href: "#products" }, - { label: "Tobacco", href: "#products" }, - { label: "Charcoal", href: "#products" }, - { label: "Accessories", href: "#products" }, + { label: "Hookahs", href: "/#products" }, + { label: "Tobacco", href: "/#products" }, + { label: "Charcoal", href: "/#products" }, + { label: "Accessories", href: "/#products" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "#about" }, - { label: "FAQ", href: "#faq" }, - { label: "Contact", href: "#contact" }, + { label: "About Us", href: "/#about" }, + { label: "FAQ", href: "/#faq" }, + { label: "Contact", href: "/#contact" }, ], }, ]}