first commit

This commit is contained in:
polaris
2024-06-29 01:22:22 -04:00
commit 8926934d2d
242 changed files with 494247 additions and 0 deletions

27
app/layout.tsx Normal file
View File

@ -0,0 +1,27 @@
import type { Metadata } from "next";
import { GeistSans } from "geist/font/sans";
import { Toaster } from "@/components/ui/toaster";
import "./globals.css";
import ReactQueryProvider from "./provider";
export const metadata: Metadata = {
title: "Lachesis",
description: "Artemis score viewer",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={GeistSans.className}>
<body className={GeistSans.className}>
<ReactQueryProvider>
<main className="">{children} </main>
</ReactQueryProvider>
<Toaster />
</body>
</html>
);
}