import { Rocket } from 'lucide-react' import { ReactNode } from 'react' interface AuthLayoutProps { children: ReactNode title: string subtitle: string } export function AuthLayout({ children, title, subtitle }: AuthLayoutProps) { return (
{subtitle}