import { ReactNode } from "react"; import { ProwlerExtended } from "@/components/icons"; import { ThemeSwitch } from "@/components/ThemeSwitch"; interface AuthLayoutProps { title: string; children: ReactNode; } export const AuthLayout = ({ title, children }: AuthLayoutProps) => { return (
{/* Background Pattern */}
{/* Auth Form Container */}
{/* Prowler Logo */}
{/* Header with Title and Theme Toggle */}

{title}

{/* Content */} {children}
); };