import Link from 'next/link'; type AuthShellProps = { title: string; subtitle: string; children: React.ReactNode; footer: React.ReactNode; }; export function AuthShell({ title, subtitle, children, footer }: AuthShellProps) { return (