import "./globals.css"; import React from "react"; export const metadata = { title: "LOG 官网", description: "Next.js + Tailwind 示例站点", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }