From 3bf8b362e4ca73f1b5aaca1af562f20b507f15d3 Mon Sep 17 00:00:00 2001 From: poyrazavsever Date: Tue, 10 Mar 2026 21:49:10 +0300 Subject: [PATCH] feat: add Content and Newsletter links to navigation --- lib/links.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/links.ts b/lib/links.ts index 5364b3f..5ce4dac 100644 --- a/lib/links.ts +++ b/lib/links.ts @@ -2,6 +2,8 @@ export const NAV_LINKS = [ { id: "home", label: "Home", href: "/" }, { id: "about", label: "About", href: "/about" }, { id: "blog", label: "Blog", href: "/blog" }, + { id: "content", label: "Content", href: "/content" }, + { id: "newsletter", label: "Newsletter", href: "/newsletter" }, { id: "projects", label: "Projects", href: "/projects" }, { id: "contact", label: "Contact", href: "/contact" }, ] as const;