polish(icons): update nav icons to warmer, more refined set

Replaces generic/robotic emojis with purposeful ones:
🏠🏡 Home, 📋📝 Activity, 🤖🔮 AI, 📈🌿 Growth,
💊🩺 Medical, 👗🧺 Wardrobe, 👨‍👩‍👧💞 Circle

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Manohar Gupta 2026-05-24 16:25:42 +05:30
parent 31b4a9480a
commit f1d4374609
2 changed files with 10 additions and 10 deletions

View file

@ -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 () => {

View file

@ -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;