From ae3bfee10730db152c6e5db2b7762bb6aec9bc66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bu=C4=9Fra=20Canata?= Date: Sat, 28 Feb 2026 22:19:09 +0300 Subject: [PATCH] Update DMR link, add board members to about page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rename "DMR Editor" to "DMR İndir" across nav and about page - Add target="_blank" support to Header component - Add all 5 board members with QRZ.com links to hakkimizda page - Update DMR blog post with channel list section - Remove "Liderlik" tagline from board section Co-Authored-By: Claude Sonnet 4.6 --- src/components/widgets/Header.astro | 7 +- .../post/dmr-dijital-mobisle-radio-nedir.md | 85 +++++++++++++++++++ src/navigation.ts | 4 +- src/pages/hakkimizda.astro | 61 +++++++++++-- 4 files changed, 148 insertions(+), 9 deletions(-) create mode 100644 src/data/post/dmr-dijital-mobisle-radio-nedir.md diff --git a/src/components/widgets/Header.astro b/src/components/widgets/Header.astro index ff4a3aa..da225cc 100644 --- a/src/components/widgets/Header.astro +++ b/src/components/widgets/Header.astro @@ -14,6 +14,7 @@ interface Link { href?: string; ariaLabel?: string; icon?: string; + target?: string; } interface MenuLink extends Link { @@ -86,7 +87,7 @@ const currentPath = `/${trimSlash(new URL(Astro.url).pathname)}`; class="flex flex-col md:flex-row md:self-center w-full md:w-auto text-xl md:text-[0.9375rem] tracking-[0.01rem] font-medium md:justify-center" > { - links.map(({ text, href, links }) => ( + links.map(({ text, href, links, target }) => (
  • {links?.length ? ( <> @@ -98,7 +99,7 @@ const currentPath = `/${trimSlash(new URL(Astro.url).pathname)}`;