Files
live2d_test/src/app/layout.tsx
2024-06-25 21:20:05 +08:00

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>
);
}