import Link from "next/link"; import { ArrowLeft } from "lucide-react"; import { Logo } from "~/components/branding/logo"; import { cn } from "~/lib/utils"; export function AuthPageShell({ children, className, }: { children: React.ReactNode; className?: string; }) { return (
Back to home {children}
); } export function AuthCard({ children, className, }: { children: React.ReactNode; className?: string; }) { return (
{children}
); } export function AuthCardHeader({ title, description, }: { title: string; description: string; }) { return (

{title}

{description}

); }