From 260187b0de5f52a96a52147eab61ba395546e773 Mon Sep 17 00:00:00 2001 From: Mannu Date: Thu, 28 May 2026 00:16:29 +0530 Subject: [PATCH] fix(nav): Home link in menu points to /home instead of marketing site Co-Authored-By: Claude Sonnet 4.6 --- src/app/(app)/menu/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(app)/menu/page.tsx b/src/app/(app)/menu/page.tsx index 617e808..c05c3ff 100644 --- a/src/app/(app)/menu/page.tsx +++ b/src/app/(app)/menu/page.tsx @@ -9,7 +9,7 @@ export default function MenuPage() { const [signingOut, setSigningOut] = useState(false); const menuItems = [ - { icon: "🏡", label: "Home", href: "/" }, + { icon: "🏡", label: "Home", href: "/home" }, { icon: "📝", label: "Activity", href: "/activity" }, { icon: "🌿", label: "Growth", href: "/growth" }, { icon: "🩺", label: "Medical", href: "/medical" },