2025-12-29 14:09:13 +08:00
|
|
|
import type { Metadata } from "next"
|
|
|
|
|
import type { ReactNode } from "react"
|
|
|
|
|
import "./globals.css"
|
|
|
|
|
import { Toaster } from "@/components/ui/sonner"
|
2025-12-29 10:41:23 +08:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Create Next App",
|
|
|
|
|
description: "Generated by create next app",
|
2025-12-29 14:09:13 +08:00
|
|
|
}
|
2025-12-29 10:41:23 +08:00
|
|
|
|
|
|
|
|
export default function RootLayout(props: { children: ReactNode }) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="zh-CN">
|
2025-12-29 14:09:13 +08:00
|
|
|
<body>
|
|
|
|
|
{props.children}
|
|
|
|
|
<Toaster />
|
|
|
|
|
</body>
|
2025-12-29 10:41:23 +08:00
|
|
|
</html>
|
2025-12-29 14:09:13 +08:00
|
|
|
)
|
2025-12-29 10:41:23 +08:00
|
|
|
}
|