import Link from 'next/link' import { CirclesBackground } from '@/components/CirclesBackground' import { Logo } from '@/components/Logo' export function AuthLayout({ title, subtitle, children, }: { title: string subtitle: React.ReactNode children: React.ReactNode }) { return (

{title}

{subtitle && (

{subtitle}

)}
{children}
) }