/** * Minimal layout variant * Used for onboarding, public routes, and other pages without navigation * Similar to unauthenticated but semantically different use case */ import type { PropsWithChildren } from "react"; import { SidebarProvider } from "@/src/components/ui/sidebar"; export function MinimalLayout({ children }: PropsWithChildren) { return (
{children}
); }