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 (
{/* Left side - Hero */}

ScaleSite

{title}

{subtitle}

{/* Right side - Form */}
{children}
) }