Update src/app/blog/page.tsx
This commit is contained in:
@@ -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" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user