This commit is contained in:
2025-09-08 17:18:54 +02:00
parent a69f35c9a7
commit 7e2b30fbcc
5 changed files with 63 additions and 5 deletions

View File

@@ -1,10 +1,12 @@
import { Footer } from '@/components/Footer'
import { Header } from '@/components/Header'
import { Banner } from '@/components/Banner'
export function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<Header />
<Banner />
<main className="flex-auto">{children}</main>
<Footer />
</>