2025-03-12 11:22:32 +08:00
|
|
|
"use client"
|
|
|
|
|
// export const metadata = {
|
|
|
|
|
// title: "CS工具箱",
|
|
|
|
|
// description: "Generated by Next.js",
|
|
|
|
|
// icons: ["/favicon.ico"],
|
|
|
|
|
// }
|
2024-09-20 23:15:42 +08:00
|
|
|
|
2024-11-11 10:04:00 +08:00
|
|
|
import "./globals.css"
|
2025-03-12 11:22:32 +08:00
|
|
|
import Providers from "./providers"
|
2024-09-20 23:15:42 +08:00
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
2025-03-12 13:07:16 +08:00
|
|
|
<body className="bg-[rgba(242, 241, 243, 0.65)] dark:bg-zinc-900">
|
2025-03-12 11:22:32 +08:00
|
|
|
<Providers>{children}</Providers>
|
|
|
|
|
</body>
|
2024-09-20 23:15:42 +08:00
|
|
|
</html>
|
|
|
|
|
)
|
|
|
|
|
}
|