/** * Unauthenticated layout variant * Used for sign-in, sign-up, and other auth pages * Minimal layout with no sidebar or navigation */ import type { PropsWithChildren } from "react"; import { SidebarProvider } from "@/src/components/ui/sidebar"; export function UnauthenticatedLayout({ children }: PropsWithChildren) { return (
{children}
); }