new frontend

ik ben zo cool
This commit is contained in:
ben
2026-08-19 09:33:48 +02:00
parent 1822dea7e3
commit bf601846db
104 changed files with 16741 additions and 0 deletions
@@ -0,0 +1,27 @@
import type React from "react"
import type { Metadata } from "next"
import { Inter } from "next/font/google"
import "./globals.css"
import { AuthProvider } from "@/lib/auth-context"
const inter = Inter({ subsets: ["latin"] })
export const metadata: Metadata = {
title: "Calendar | Rooms & Events",
description: "A shared, room-based calendar for planning events together.",
generator: "v0.app",
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en" className="bg-background">
<body className={inter.className}>
<AuthProvider>{children}</AuthProvider>
</body>
</html>
)
}