24 lines
507 B
TypeScript
24 lines
507 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Next App",
|
|
description: "Generated by create next app",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
{/* <script src="http://publicjs.supmiao.com/live2dcubismcore.min.js"></script> */}
|
|
</head>
|
|
<body className="w-screen h-screen">{children}</body>
|
|
</html>
|
|
);
|
|
}
|