import Link from "next/link"; function BackgroundIllustration(props) { return ( ); } export function AuthLayout({ title, subtitle, children }) { return ( {/* logo */} {title} {subtitle && {subtitle}} {children} ); }
{subtitle}