diff --git a/src/components/dashboard/EventsSection.astro b/src/components/dashboard/EventsSection.astro new file mode 100644 index 0000000..bb7b29d --- /dev/null +++ b/src/components/dashboard/EventsSection.astro @@ -0,0 +1,18 @@ +--- +import { Icon } from "astro-icon/components"; +--- + + diff --git a/src/components/dashboard/ProfileSection.astro b/src/components/dashboard/ProfileSection.astro new file mode 100644 index 0000000..a3e96bc --- /dev/null +++ b/src/components/dashboard/ProfileSection.astro @@ -0,0 +1,95 @@ +--- +import { Icon } from "astro-icon/components"; +--- + +
+
+

Dashboard Overview

+

Welcome to your IEEE UCSD dashboard

+
+ + +
+
+
+
+ Events Attended +
+
+ 0 +
+
+
+ Since joining +
+
+
+
+
+
+
+ Loyalty Points +
+
+ 0 +
+
+
+ No activity +
+
+
+
+
+
+
+ Activity Level +
+
+ Low +
+
+
+ New Member +
+
+
+
+
+ + +
+
+

+
+ +
+ Recent Activity +

+
+
+

+ + No recent activity to display. +

+
+
+
+
diff --git a/src/components/dashboard/ReimbursementSection.astro b/src/components/dashboard/ReimbursementSection.astro new file mode 100644 index 0000000..87f2410 --- /dev/null +++ b/src/components/dashboard/ReimbursementSection.astro @@ -0,0 +1,18 @@ +--- +import { Icon } from "astro-icon/components"; +--- + + diff --git a/src/components/dashboard/SettingsSection.astro b/src/components/dashboard/SettingsSection.astro new file mode 100644 index 0000000..0298fa8 --- /dev/null +++ b/src/components/dashboard/SettingsSection.astro @@ -0,0 +1,22 @@ +--- +import { Icon } from "astro-icon/components"; +--- + + diff --git a/src/pages/dashboard.astro b/src/pages/dashboard.astro index 5c3aca7..96ee513 100644 --- a/src/pages/dashboard.astro +++ b/src/pages/dashboard.astro @@ -3,6 +3,10 @@ import yaml from "js-yaml"; import profileConfig from "../config/profileConfig.yaml?raw"; import textConfig from "../config/text.yml?raw"; import { Icon } from "astro-icon/components"; +import ProfileSection from "../components/dashboard/ProfileSection.astro"; +import EventsSection from "../components/dashboard/EventsSection.astro"; +import ReimbursementSection from "../components/dashboard/ReimbursementSection.astro"; +import SettingsSection from "../components/dashboard/SettingsSection.astro"; const title = "Dashboard"; const config = yaml.load(profileConfig) as any; @@ -64,23 +68,26 @@ const text = yaml.load(textConfig) as any; -