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