"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { useSession } from "next-auth/react"; import { Skeleton } from "~/components/ui/skeleton"; import { navigationConfig } from "~/lib/navigation"; export function Sidebar() { const pathname = usePathname(); const { status } = useSession(); return ( ); }