layout.jsx 428 B

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