Erste Aenderungen

This commit is contained in:
Marc Wieland
2025-04-20 17:15:07 +02:00
parent a517191176
commit 79aa26d48a
17 changed files with 418 additions and 184 deletions

19
src/layout/Layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
import { ReactNode } from "react";
type LayoutProps = {
children: ReactNode;
};
const Layout = ({ children }: LayoutProps) => {
return (
<div className="min-h-screen bg-white flex flex-col">
<Navbar />
<main className="flex-1 pt-16">{children}</main>
<Footer />
</div>
);
};
export default Layout;