From dcd23268d17421688e5afd2dc38881172ea9d50b Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 16:40:08 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index c0e478b..7385ca7 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -56,7 +56,8 @@ export default function BlogPage() { const url = `${apiUrl}/posts/${projectId}?status=published`; const response = await fetch(url, { method: "GET", headers: { - "Content-Type": "application/json"}, + "Content-Type": "application/json" + }, }); if (response.ok) { @@ -104,6 +105,7 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "About", id: "about" }, { name: "Menu", id: "products" }, + { name: "Products", id: "/products" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" } ]}