diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 643ea13..75dc707 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,6 +10,15 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Menu", id: "/menu" }, + { name: "Testimonials", id: "/testimonials" }, + { name: "Contact", id: "/contact" }, + { name: "Blog", id: "/blog" } + ]; + return ( @@ -62,11 +65,10 @@ export default function BlogPage() {