| 1234567891011121314 |
- import AppShell from "@/components/app-shell/AppShell";
- /**
- * Protected layout:
- * - Wraps all authenticated pages in a consistent application shell
- * - No auth guard yet (comes in later tickets)
- *
- * RHL-019 goal:
- * - the layout exists and is stable so later we only add guard logic,
- * without restructuring the UI.
- */
- export default function ProtectedLayout({ children }) {
- return <AppShell>{children}</AppShell>;
- }
|