import React from 'react'; import { Link, useLocation } from 'react-router-dom'; import './Layout.css'; interface LayoutProps { children: React.ReactNode; } function Layout({ children }: LayoutProps) { const location = useLocation(); const navigationItems = [ { path: '/', label: '仪表板', icon: '📊' }, { path: '/sync', label: '数据同步', icon: '🔄' }, { path: '/analysis', label: '数据分析', icon: '📈' }, { path: '/recommendations', label: '健康建议', icon: '💡' }, { path: '/settings', label: '设置', icon: '⚙️' }, ]; return (
佳明健康数据分析平台