"use client"; import Image from "next/image"; import { usePathname } from "next/navigation"; export const DynamicLogoSatker = () => { const pathname = usePathname(); const satker = pathname?.split("/")[3]; console.log("satker", satker?.toUpperCase()) return
{pathname?.includes("/satker") && ( Logo )}
; };