import { Mountain } from "lucide-react"; import type { ReactNode } from "react"; type AuthLayoutProps = { title: string; description: string; children: ReactNode; }; export function AuthLayout({ title, description, children }: AuthLayoutProps) { return (
Ironmount

{title}

{description}

{children}
); }