everything

This commit is contained in:
2026-03-16 23:47:20 -04:00
Unverified
parent c3d38091ce
commit f73fc4ec68
8 changed files with 1679 additions and 1688 deletions

View File

@@ -1,23 +1,26 @@
import type { Metadata } from "next";
import "./globals.css";
import Nav from "@/components/Nav";
import { ConnectionProvider } from "@/lib/connection";
export const metadata: Metadata = {
title: "Connect4 Moderator",
description: "Watch matches, track tournaments, and play Connect4",
title: "Connect4 Moderator",
description: "Watch matches, track tournaments, and play Connect4",
};
export default function RootLayout({
children,
children,
}: {
children: React.ReactNode;
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className="min-h-screen bg-gray-950 text-gray-100">
<Nav />
<main className="max-w-7xl mx-auto px-4 py-6">{children}</main>
</body>
</html>
);
return (
<html lang="en">
<body className="min-h-screen bg-gray-950 text-gray-100">
<ConnectionProvider>
<Nav />
<main className="max-w-7xl mx-auto px-4 py-6">{children}</main>
</ConnectionProvider>
</body>
</html>
);
}