2026-04-13 08:00:48 +00:00
|
|
|
import { Outlet } from "react-router-dom";
|
2026-04-14 08:09:19 +00:00
|
|
|
import NotificationCenter from "./NotificationCenter";
|
2026-04-13 08:00:48 +00:00
|
|
|
import Sidebar from "./Sidebar";
|
|
|
|
|
|
|
|
|
|
export default function AppLayout() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex h-screen">
|
|
|
|
|
<Sidebar />
|
|
|
|
|
<main className="flex-1 overflow-y-auto bg-gray-50">
|
2026-04-14 08:09:19 +00:00
|
|
|
<header className="sticky top-0 z-10 border-b border-gray-200 bg-gray-50/95 px-6 py-3 backdrop-blur">
|
|
|
|
|
<div className="flex justify-end">
|
|
|
|
|
<NotificationCenter />
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
2026-04-13 08:00:48 +00:00
|
|
|
<Outlet />
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|