From 00cf0202f67eab661d899405be84ba4d883fccca Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Feb 2026 12:34:11 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) 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() {