Files
rf4-spotter/apps/web/src/components/AdminNav.astro
T

13 lines
462 B
Plaintext

---
const path = Astro.url.pathname;
const links = [
["/admin", "Обзор"],
["/admin/moderation", "Уловы"],
["/admin/external-sources", "Источники"],
["/admin/media", "Медиа"],
] as const;
---
<nav class="admin-nav" aria-label="Разделы админ-панели">
{links.map(([href, label]) => <a class={path === href ? "active" : undefined} aria-current={path === href ? "page" : undefined} href={href}>{label}</a>)}
</nav>