"use client" import { LogOut } from "react-feather" import Link from "next/link" import styles from "./sidebar.module.css" import { SidebarProps } from "@/types/requests/myPages/navigation" import { usePathname } from "next/navigation" import { Fragment } from "react" export default function Sidebar({ menuItems }: SidebarProps) { const currentPageSlug = `/${usePathname() .split("/") .filter((v) => v) .at(-1)}` return ( ) }