chore: initialize project

This commit is contained in:
2026-06-18 19:24:54 -03:00
commit 7e8facad64
10 changed files with 6863 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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>
);
}