Update src/app/blog/page.tsx
This commit is contained in:
@@ -30,7 +30,7 @@ export default function BlogPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
@@ -63,10 +63,10 @@ export default function BlogPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Menu", href: "#menu" },
|
||||
{ label: "Team", href: "#team" }
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "about" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Team", href: "team" }
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -79,8 +79,8 @@ export default function BlogPage() {
|
||||
},
|
||||
{
|
||||
title: "Discover", items: [
|
||||
{ label: "Our Story", href: "#about" },
|
||||
{ label: "Chef's Menu", href: "#menu" },
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Chef's Menu", href: "/menu" },
|
||||
{ label: "Events", href: "#" },
|
||||
{ label: "Catering", href: "#" }
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user