diff --git a/src/components/AccountSidebar.astro b/src/components/AccountSidebar.astro
index 192fbd68c..f4ebeb0a3 100644
--- a/src/components/AccountSidebar.astro
+++ b/src/components/AccountSidebar.astro
@@ -1,5 +1,5 @@
---
-import Icon from './AstroIcon.astro';
+import AstroIcon from './AstroIcon.astro';
const { activePageId, activePageTitle } = Astro.props;
@@ -7,58 +7,74 @@ export interface Props {
activePageId: string;
activePageTitle: string;
}
+
+const sidebarLinks = [
+ {
+ href: '/account',
+ title: 'Activity',
+ id: 'activity',
+ },
+ {
+ href: '/account/update-profile',
+ title: 'Profile',
+ id: 'profile',
+ },
+ {
+ href: '/account/update-password',
+ title: 'Security',
+ id: 'change-password',
+ },
+];
---
-
+
-