chore: create base app

This commit is contained in:
2025-12-28 17:14:03 -03:00
parent 2d5f801dde
commit 057773c013
10 changed files with 6707 additions and 128 deletions
+2
View File
@@ -0,0 +1,2 @@
@import "tailwindcss";
+23
View File
@@ -0,0 +1,23 @@
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
className={`antialiased`}
>
{children}
</body>
</html>
);
}
+6
View File
@@ -0,0 +1,6 @@
export default function Home() {
return (
<>
</>
);
}