Files

7 lines
385 B
TypeScript
Raw Permalink Normal View History

// 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>;
}