import type { ReactNode } from "react"; import { ShieldCheck, Train } from "lucide-react"; import { cn } from "@/lib/utils"; export interface AuthLayoutProps { children: ReactNode; parentClassName?: string; contentClassName?: string; left: { badge: string; title: string; description: string; features: string[]; stats: { label: string; value: string; footer: string; progress: string; }; }; } export default function AuthLayout({ children, parentClassName, contentClassName, left, }: AuthLayoutProps) { return (

EDR Freight

Railway Logistics Platform

{left.badge}

{left.title}

{left.description}

{left.features.map((item) => (
{item}
))}

EDR Freight

Railway Logistics Platform

{children}
); }