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-25 07:51:38 +02:00
|
|
|
|
|
|
|
|
export default function AppLayout({ children }: { children: React.ReactNode }) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="min-h-dvh">
|
|
|
|
|
<NavBar />
|
2026-08-26 18:47:30 +02:00
|
|
|
<main className="mx-auto max-w-6xl px-4 py-8">
|
|
|
|
|
<Breadcrumbs />
|
|
|
|
|
{children}
|
|
|
|
|
</main>
|
2026-08-25 07:51:38 +02:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|