'use client'; import { motion } from 'framer-motion'; import { cn } from '@/lib/utils'; import { useActiveTab, useAppStore } from '@/store/app-store'; const tabs = [ { id: 'analyze' as const, label: 'Analyze Note', icon: '📝' }, { id: 'settings' as const, label: 'Settings', icon: '⚙️' }, ]; export function TabNavigation() { const activeTab = useActiveTab(); const setActiveTab = useAppStore((state) => state.setActiveTab); return ( ); } // Mobile bottom tab bar export function MobileTabBar() { const activeTab = useActiveTab(); const setActiveTab = useAppStore((state) => state.setActiveTab); return ( ); }