Init project. Set up auth & db

This commit is contained in:
2024-06-03 16:29:04 -05:00
commit 217a0d3952
24 changed files with 5115 additions and 0 deletions

21
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,21 @@
import "~/styles/globals.css";
import { GeistSans } from "geist/font/sans";
export const metadata = {
title: "Create T3 App",
description: "Generated by create-t3-app",
icons: [{ rel: "icon", url: "/favicon.ico" }],
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en" className={`${GeistSans.variable}`}>
<body>{children}</body>
</html>
);
}