"use client"; import React from "react"; import Image from "next/image"; import { Link } from "@/i18n/routing"; import { AuthLayoutProps } from "@/types/auth"; import { cn } from "@/lib/utils"; export const AuthLayout: React.FC = ({ children, showSidebar = true, className }) => { return (
{showSidebar && (
MediaHub Logo
Login background
)}
{children}
); };