Initial commit from Create Next App

This commit is contained in:
Ehsan
2024-05-13 16:00:04 +03:30
commit 82ae4ed80e
14 changed files with 2031 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}