nextjs-rewrite (#5)

Reviewed-on: #5
Co-authored-by: David Gwilliam <dhgwilliam@gmail.com>
Co-committed-by: David Gwilliam <dhgwilliam@gmail.com>
This commit was merged in pull request #5.
This commit is contained in:
2026-03-30 02:30:13 +00:00
committed by david
parent 1a9b3496e1
commit 123df671f5
160 changed files with 19293 additions and 1180 deletions
+31
View File
@@ -0,0 +1,31 @@
import type { Metadata } from "next";
import "./globals.css";
import { SessionProvider } from "@/components/SessionProvider";
const inter = {
variable: "--font-inter",
};
export const metadata: Metadata = {
title: "EuchreCamp - Tournament Management & Partnership Analytics",
description: "Track your Euchre games, tournaments, and partnership performance",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${inter.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
<SessionProvider>
{children}
</SessionProvider>
</body>
</html>
);
}