From f1d4374609db8b9d0ca96f849ff2d1ee4201838e Mon Sep 17 00:00:00 2001 From: Mannu Date: Sun, 24 May 2026 16:25:42 +0530 Subject: [PATCH] polish(icons): update nav icons to warmer, more refined set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces generic/robotic emojis with purposeful ones: ๐Ÿ โ†’๐Ÿก Home, ๐Ÿ“‹โ†’๐Ÿ“ Activity, ๐Ÿค–โ†’๐Ÿ”ฎ AI, ๐Ÿ“ˆโ†’๐ŸŒฟ Growth, ๐Ÿ’Šโ†’๐Ÿฉบ Medical, ๐Ÿ‘—โ†’๐Ÿงบ Wardrobe, ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ†’๐Ÿ’ž Circle Co-Authored-By: Claude Sonnet 4.6 --- src/app/menu/page.tsx | 14 +++++++------- src/components/BottomNav.tsx | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index f46fe52..c55ca4e 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -9,15 +9,15 @@ export default function MenuPage() { const [signingOut, setSigningOut] = useState(false); const menuItems = [ - { icon: "๐Ÿ ", label: "Home", href: "/" }, - { icon: "๐Ÿ“Š", label: "Activity", href: "/activity" }, - { icon: "๐Ÿ“ˆ", label: "Growth", href: "/growth" }, - { icon: "๐Ÿ’Š", label: "Medical", href: "/medical" }, + { icon: "๐Ÿก", label: "Home", href: "/" }, + { icon: "๐Ÿ“", label: "Activity", href: "/activity" }, + { icon: "๐ŸŒฟ", label: "Growth", href: "/growth" }, + { icon: "๐Ÿฉบ", label: "Medical", href: "/medical" }, { icon: "๐Ÿ“ธ", label: "Memories", href: "/memories" }, - { icon: "๐Ÿค–", label: "AI Chat", href: "/ai" }, + { icon: "๐Ÿ”ฎ", label: "AI Chat", href: "/ai" }, { icon: "๐ŸŒŸ", label: "Milestones", href: "/milestones" }, - { icon: "๐Ÿ‘—", label: "Wardrobe", href: "/wardrobe" }, - { icon: "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", label: "Circle", href: "/circle" }, + { icon: "๐Ÿงบ", label: "Wardrobe", href: "/wardrobe" }, + { icon: "๐Ÿ’ž", label: "Circle", href: "/circle" }, ]; const handleSignOut = async () => { diff --git a/src/components/BottomNav.tsx b/src/components/BottomNav.tsx index be889ec..95c8c6d 100644 --- a/src/components/BottomNav.tsx +++ b/src/components/BottomNav.tsx @@ -4,9 +4,9 @@ import Link from "next/link"; import { usePathname } from "next/navigation"; const TABS = [ - { href: "/", icon: "๐Ÿ ", label: "Home" }, - { href: "/activity", icon: "๐Ÿ“‹", label: "Activity" }, - { href: "/ai", icon: "๐Ÿค–", label: "Ask AI" }, + { href: "/", icon: "๐Ÿก", label: "Home" }, + { href: "/activity", icon: "๐Ÿ“", label: "Activity" }, + { href: "/ai", icon: "๐Ÿ”ฎ", label: "Ask AI" }, { href: "/menu", icon: "โ˜ฐ", label: "Menu" }, ] as const;