import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { Toaster } from "@/components/ui/toaster"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "代理服务管理后台", description: "代理服务管理后台", }; export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ); }