"use client"; import type { ReactNode } from "react"; /** Shared branded full-page shell for the /auth/* confirmation + form pages. */ export function AuthShell({ title, subtitle, action, children, }: { title: string; subtitle?: string; action?: { href: string; label: string }; children?: ReactNode; }) { return (

{title}

{subtitle &&

{subtitle}

} {children} {action && ( {action.label} )}
); }