This commit is contained in:
zjt
2024-06-24 16:03:17 +08:00
parent 6494149f9f
commit dc2ddc3fa4
19 changed files with 11871 additions and 121 deletions

View File

@@ -1,8 +1,6 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Create Next App",
@@ -16,7 +14,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
<head>
{/* <script src="http://publicjs.supmiao.com/live2dcubismcore.min.js"></script> */}
</head>
<body>{children}</body>
</html>
);
}