import { NavLink } from "react-router-dom"; import { sectionsView } from "../lib/docs"; // Per-section emoji badges so the sidebar reads at a glance even when // the labels collapse on narrow screens. Falls back to ▸ for anything // not in the map. const SECTION_ICON: Record = { overview: "📘", panel: "🔐", auth: "🪪", dashboard: "🏠", editor: "🧑‍💻", projects: "📦", profile: "👤", social: "💬", leaderboard: "🏆", cloud: "☁️", github: "🐙", screenshots: "📸", }; export function Sidebar() { const sections = sectionsView(); return ( ); }