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;