Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 11:39:23 +00:00
parent 7f413abc1e
commit 82b50a02de

View File

@@ -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" },
]}
/>
</div>
@@ -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" },
],
},
]}