From 00d31136195fd6e62a47b82ab72897caa2ad1572 Mon Sep 17 00:00:00 2001 From: Kusindra Aji Rabbany Date: Sat, 13 Jun 2026 08:25:47 +0700 Subject: [PATCH] refactor: Rename "Kontributor" menu to "Kontribusi" for clearer navigation --- src/app/_components/global/Footer.tsx | 2 +- src/app/_components/global/Navbar.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/_components/global/Footer.tsx b/src/app/_components/global/Footer.tsx index 804e7d89..f01e6727 100644 --- a/src/app/_components/global/Footer.tsx +++ b/src/app/_components/global/Footer.tsx @@ -23,7 +23,7 @@ const mainMenus: FootOption[] = [ { title: "Berita", href: "/berita" }, { title: "Organisasi", href: "/organisasi" }, { title: "Tentang", href: "/tentang" }, - { title: "Kontributor", href: "/kontributor" }, + { title: "Gabung Kontributor", href: "/kontributor" }, ]; const usefulLinks: FootOption[] = [ diff --git a/src/app/_components/global/Navbar.tsx b/src/app/_components/global/Navbar.tsx index 538e0b3c..3d2cd13f 100644 --- a/src/app/_components/global/Navbar.tsx +++ b/src/app/_components/global/Navbar.tsx @@ -19,7 +19,7 @@ const navOptions: NavOption[] = [ { title: "Berita", href: "/berita" }, { title: "Organisasi", href: "/organisasi" }, { title: "Tentang", href: "/tentang" }, - { title: "Kontributor", href: "/kontributor" }, + { title: "Kontribusi", href: "/kontributor" }, ]; export default function Navbar() {