"use client"; import Image from "next/image"; import circle from "@/app/assets/circle.png"; import styles from "./LeftNav.module.scss"; import Link from "next/link"; import { usePathname } from "next/navigation"; const LeftNav = ({ navigations, title, }: { navigations?: any[]; title: string; }) => { const pathname = usePathname(); return (
{"circle {title}
{(navigations?.length ?? 0) > 0 && (
)}
); }; export default LeftNav;