All current db functions are written. Just need to make api routes then we are done

This commit is contained in:
2024-10-16 16:51:08 -05:00
commit f734551d3a
21 changed files with 5140 additions and 0 deletions

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

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