From 211133ab28f95917803c792c911b9ed116eb5b5d Mon Sep 17 00:00:00 2001 From: development Date: Fri, 30 Jan 2026 21:28:49 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 5edf448..b95b56c 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -54,7 +54,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) { @@ -128,9 +129,9 @@ export default function BlogPage() { columns={[ { items: [ - { label: "About", id: "about" }, - { label: "Work", id: "work" }, - { label: "Skills", id: "skills" } + { label: "About", href: "about" }, + { label: "Work", href: "work" }, + { label: "Skills", href: "skills" } ] }, { @@ -142,7 +143,7 @@ export default function BlogPage() { }, { items: [ - { label: "Contact", id: "contact" }, + { label: "Contact", href: "contact" }, { label: "Privacy", href: "#privacy" }, { label: "Terms", href: "#terms" } ]