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
+1
View File
@@ -0,0 +1 @@
@import "tailwindcss";
+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>
);
}
+7
View File
@@ -0,0 +1,7 @@
export default function Home() {
return (
<main>
<div>Hello world!</div>
</main>
);
}