Initial commit from Create Next App

This commit is contained in:
Yidadaa
2023-03-07 23:23:54 +08:00
commit 0decdb3e43
16 changed files with 5849 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import './globals.css'
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}