commit d7104feb3fb8dc98b1b05c44bb78d47c43834aa6 Author: Joshua Higgins Date: Sun Mar 15 20:18:04 2026 +0000 first diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..84298d4 Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cf70988 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +**/node_modules diff --git a/connect4-ui/app/globals.css b/connect4-ui/app/globals.css new file mode 100644 index 0000000..88433af --- /dev/null +++ b/connect4-ui/app/globals.css @@ -0,0 +1,12 @@ +@import "tailwindcss"; + +:root { + --background: #030712; + --foreground: #f9fafb; +} + +body { + background-color: var(--background); + color: var(--foreground); + font-family: system-ui, -apple-system, sans-serif; +} diff --git a/connect4-ui/app/layout.tsx b/connect4-ui/app/layout.tsx new file mode 100644 index 0000000..c28416a --- /dev/null +++ b/connect4-ui/app/layout.tsx @@ -0,0 +1,23 @@ +import type { Metadata } from "next"; +import "./globals.css"; +import Nav from "@/components/Nav"; + +export const metadata: Metadata = { + title: "Connect4 Moderator", + description: "Watch matches, track tournaments, and play Connect4", +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + +