Initial commit from Create Next App

This commit is contained in:
Poyraz Avsever
2026-03-09 10:21:53 +03:00
commit 24241aa1af
16 changed files with 4235 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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">
<body>
{children}
</body>
</html>
);
}