2024-06-25 20:18:37 +08:00
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import "./globals.css";
|
2024-06-24 22:12:13 +08:00
|
|
|
|
2024-06-25 20:18:37 +08:00
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
2024-06-24 22:12:13 +08:00
|
|
|
|
|
|
|
export const metadata = {
|
2024-06-25 20:18:37 +08:00
|
|
|
title: "Create Next App",
|
|
|
|
description: "Generated by create next app",
|
|
|
|
};
|
2024-06-24 22:12:13 +08:00
|
|
|
|
|
|
|
export default function RootLayout({ children }) {
|
|
|
|
return (
|
2024-06-25 20:18:37 +08:00
|
|
|
<html
|
|
|
|
lang="zh-CN"
|
|
|
|
className="bg-[#07050A]"
|
|
|
|
data-prefers-color-scheme="dark"
|
|
|
|
>
|
2024-06-24 22:12:13 +08:00
|
|
|
<body className={inter.className}>{children}</body>
|
|
|
|
</html>
|
2024-06-25 20:18:37 +08:00
|
|
|
);
|
2024-06-24 22:12:13 +08:00
|
|
|
}
|