import { ShieldHalf } from "lucide-react"; import AuthCarousel from "./AuthCarousel"; export default function AuthShell({ title, subtitle, children }: { title: string; subtitle?: string; children: React.ReactNode; }) { return (
{/* Left — form */}
VerifyPack

{title}

{subtitle &&

{subtitle}

}
{children}
{/* Right — promo carousel */}
); } export function Field({ label, ...props }: any) { return ( ); }