New Layout

This commit is contained in:
Marco Santos
2025-07-13 21:43:37 +01:00
parent f51e5dea31
commit 11e532ac9a
183 changed files with 1621 additions and 8377 deletions

View File

@@ -0,0 +1,15 @@
// components/layout/Layout.tsx
import Footer from './Footer';
import Header from './Header';
export const Layout = ({ children }: { children: React.ReactNode }) => {
return (
<div className="flex flex-col min-h-screen bg-white dark:bg-zinc-900 text-zinc-900 dark:text-zinc-100">
<Header />
<main className="flex-grow">
{children}
</main>
<Footer />
</div>
);
};