more brainstorming

This commit is contained in:
z1glr
2025-01-06 17:03:18 +00:00
parent 26030a5026
commit 9a7a80ac80
21 changed files with 2767 additions and 443 deletions

View File

@@ -1,19 +1,31 @@
import type { Metadata } from "next";
import "./globals.css";
import { NextUIProvider } from "@nextui-org/system";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app"
description: "Generated by create next app",
};
export default function RootLayout({
children
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className="antialiased">{children}</body>
<html>
<body className="bg-background text-foreground antialiased">
<NextUIProvider>
<div className="flex min-h-screen flex-col p-4">
<header>
<h1 className="text-center font-display-headline text-8xl">
Volunteer Scheduler
</h1>
</header>
<main className="flex min-h-full flex-1 flex-col">{children}</main>
</div>
</NextUIProvider>
</body>
</html>
);
}