finished client + added docker compose builds for client and server

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-27 14:50:05 -05:00
parent 34873a3d89
commit b4fd4ee8e6
25 changed files with 1661 additions and 40 deletions
+11 -10
View File
@@ -1,15 +1,12 @@
import Providers from "@/components/Providers";
import { Roboto } from "next/font/google";
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const roboto = Roboto({
subsets: ["latin"],
weight: ["400", "500", "700"],
variable: "--font-roboto",
});
export const metadata: Metadata = {
@@ -25,9 +22,13 @@ export default function RootLayout({
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
className={`${roboto.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="min-h-full flex flex-col">
<Providers>
{children}
</Providers>
</body>
</html>
);
}