import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "交互式思维导图", description: "基于 Next.js、FastAPI 和 SQLite 的思维导图 MVP", }; type RootLayoutProps = { children: React.ReactNode; }; export default function RootLayout({ children }: RootLayoutProps) { return ( {children} ); }