import './globals.css'; import type { Metadata } from 'next'; import { Sidebar } from '@/components/layout/Sidebar'; export const metadata: Metadata = { title: 'FTB 项目管理', description: '智能项目管理系统', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }