Vertical sidebar navigation with rune decorations.
npx chaos add vertical-navimport { VerticalNav } from '@/components/chaos/navigation/vertical-nav';
const items = [
{ glyph: '⌂', label: 'Home', href: '/', active: true },
{ glyph: '☰', label: 'Menu', href: '/menu' },
{ glyph: '⚙', label: 'Settings', href: '/settings' },
];
<VerticalNav items={items} />