Initial commit from Create Next App

This commit is contained in:
2024-02-01 00:46:06 +04:00
commit 7cdc259fb3
7 changed files with 572 additions and 0 deletions

11
app/layout.tsx Normal file
View File

@@ -0,0 +1,11 @@
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}

3
app/page.tsx Normal file
View File

@@ -0,0 +1,3 @@
export default function Page() {
return <h1>Hello, Next.js!</h1>;
}