--- import AstroIcon from './AstroIcon.astro'; const { activePageId, activePageTitle } = Astro.props; export interface Props { activePageId: string; activePageTitle: string; } const sidebarLinks = [ { href: '/account', title: 'Activity', id: 'activity', isNew: false, icon: { glyph: 'analytics', classes: 'h-3 w-4', }, }, { href: '/account/road-card', title: 'Card', id: 'road-card', isNew: true, icon: { glyph: 'badge', classes: 'h-4 w-4', }, }, { href: '/account/update-profile', title: 'Profile', id: 'profile', isNew: false, icon: { glyph: 'user', classes: 'h-4 w-4', }, }, { href: '/account/update-password', title: 'Security', id: 'change-password', isNew: false, icon: { glyph: 'security', classes: 'h-4 w-4', }, }, ]; ---