--- 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', icon: { glyph: 'analytics', classes: 'h-3 w-4', } }, { href: '/account/update-profile', title: 'Profile', id: 'profile', icon: { glyph: 'user', classes: 'h-4 w-4', } }, { href: '/account/update-password', title: 'Security', id: 'change-password', icon: { glyph: 'security', classes: 'h-4 w-4' } }, ]; ---