Almost finish implementing client side

This commit is contained in:
2025-11-06 20:22:16 +02:00
parent a847779582
commit a891a686fd
42 changed files with 6450 additions and 57 deletions

View File

@@ -0,0 +1,14 @@
import Footer from "~/components/Footer";
import Header from "~/components/Header";
export default function RootLayout({children}: {children: React.ReactNode}) {
return (
<div className="bg-gray-100 min-h-screen font-sans flex flex-col">
<Header/>
<main className="container mx-auto pb-8 flex-grow">
{children}
</main>
<Footer />
</div>
)
}