123df671f5
Reviewed-on: #5 Co-authored-by: David Gwilliam <dhgwilliam@gmail.com> Co-committed-by: David Gwilliam <dhgwilliam@gmail.com>
32 lines
725 B
TypeScript
32 lines
725 B
TypeScript
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>
|
|
);
|
|
}
|