import React from 'react'; import { Home, Clock, Settings, User, Radio, Cloud } from 'lucide-react'; export const Sidebar = ({ activeTab, setActiveTab }) => { const menuItems = [ { id: 'dashboard', label: '首页', icon: Home, subtitle: '新建与最近记录' }, { id: 'records', label: '历史记录', icon: Clock, subtitle: '多模态时间轴' }, { id: 'devices', label: '硬件设备', icon: Radio, subtitle: '微光 Spark BLE' }, { id: 'sync', label: '云端同步', icon: Cloud, subtitle: '数据库隔离' }, { id: 'profile', label: '个人中心', icon: User, subtitle: '账号与设置' }, ]; return ( ); }; // Floating iOS Bottom TabBar component matching the screenshot exactly export const FloatingTabBar = ({ activeTab, setActiveTab }) => { const tabs = [ { id: 'dashboard', label: '首页', icon: Home }, { id: 'records', label: '历史记录', icon: Clock }, { id: 'devices', label: '设置', icon: Settings }, { id: 'profile', label: '个人中心', icon: User }, ]; return (