import Link from "next/link"; import { Button } from "@mui/material"; import { usePathname } from "next/navigation"; // Icons import CalendarP from "@/components/icons/CalendarP"; import CategoryP from "@/components/icons/CategoryP"; import ProfileAddP from "@/components/icons/ProfileAddP"; import ProfileCircleP from "@/components/icons/ProfileCircleP"; function Links({ open }) { const list = [ { name: 'دشبورد', src: '/panel/dashboard', icon: }, { name: 'حساب کاربری', src: '/panel/user-account', icon: }, { name: 'اضافه کردن پزشک', src: '/panel/add-doctor', icon: }, { name: 'نوبت ها', src: '/panel/turns', icon: } ]; const pathname = usePathname(); return (
    {list.map((item, idx) => (
  • ))}
) } export default Links