'use client' import { usePathname, useRouter } from 'next/navigation' import { CONFIG_GROUPS } from '../admin/configNavigation' export default function AdminSidebar() { const pathname = usePathname() const router = useRouter() const links = CONFIG_GROUPS.flatMap((group) => group.items) const current = links.find((item) => item.href === pathname) const renderLinks = (items: typeof links) => (