import '../globals.css'; import type { Metadata } from 'next'; import { Sidebar } from '@/app/components/Sidebar'; export const metadata: Metadata = { title: 'ShortURL Analytics', description: 'Analytics for your shortened URLs', }; export default function AppLayout({ children, }: { children: React.ReactNode; }) { return (
{/* 侧边栏 */} {/* 主内容区域 */}
{children}
); }