2026-08-25 07:51:38 +02:00
|
|
|
import { NavBar } from "@/components/layout/NavBar";
|
2026-08-26 18:47:30 +02:00
|
|
|
import { Breadcrumbs } from "@/components/layout/Breadcrumbs";
|
2026-08-26 19:02:09 +02:00
|
|
|
import { Footer } from "@/components/layout/Footer";
|
2026-08-25 07:51:38 +02:00
|
|
|
|
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
|
|
|
return (
|
2026-08-26 19:02:09 +02:00
|
|
|
<div className="flex min-h-dvh flex-col">
|
2026-08-25 07:51:38 +02:00
|
|
|
<NavBar />
|
2026-08-26 19:02:09 +02:00
|
|
|
<main className="mx-auto w-full max-w-6xl flex-1 px-4 py-8">
|
2026-08-26 18:47:30 +02:00
|
|
|
<Breadcrumbs />
|
|
|
|
|
{children}
|
|
|
|
|
</main>
|
2026-08-26 19:02:09 +02:00
|
|
|
<Footer />
|
2026-08-25 07:51:38 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|