Comprehensive admin + user dashboards (production-ready)

This commit is contained in:
Leon Serfaty
2026-06-07 17:54:30 -04:00
parent 155507f21a
commit f033f00379
122 changed files with 7878 additions and 805 deletions
+6
View File
@@ -0,0 +1,6 @@
// Public, unauthenticated route group (e.g. shared episode pages). No app shell,
// no sidebar, no session requirement — just a clean centered canvas. The root
// layout already provides <html>/<body>, fonts and the toaster.
export default function PublicLayout({ children }: { children: React.ReactNode }) {
return <div className="min-h-screen bg-background">{children}</div>;
}