'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { Upload, List, Search, Settings, AudioLines } from 'lucide-react' import { cn } from '@/lib/utils' const navItems = [ { href: '/', label: '会议', icon: List }, { href: '/upload', label: '上传', icon: Upload }, { href: '/search', label: '搜索', icon: Search, disabled: true }, { href: '/settings', label: '设置', icon: Settings, disabled: true }, ] export function AppShell({ children }: { children: React.ReactNode }) { const pathname = usePathname() return (
{/* Sidebar - Desktop */} {/* Main */}
{children}
{/* Bottom Tab - Mobile */}
) }