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

{title}

{subtitle}

{children} {footer &&
{footer}
}
Privacy Policy
) }