Files
cstb-next/src/app/layout.tsx

20 lines
310 B
TypeScript
Raw Normal View History

2024-09-20 23:15:42 +08:00
export const metadata = {
title: "CS工具箱",
description: "Generated by Next.js",
icons: ["/favicon.ico"],
2024-11-11 10:04:00 +08:00
}
2024-09-20 23:15:42 +08:00
2024-11-11 10:04:00 +08:00
import "./globals.css"
2024-09-20 23:15:42 +08:00
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}