diff --git a/README.md b/README.md
index 103e995..09b0035 100644
--- a/README.md
+++ b/README.md
@@ -12,6 +12,7 @@ A centralised resource hub for Deakin University students studying **SIT** (IT,
- ๐ **Voting** โ upvote or downvote notes and questions.
- ๐ **Search** โ find notes by title or content.
- ๐ **Deakin-only accounts** โ only `@deakin.edu.au` email addresses can contribute. Create an account with a password after verifying your email, then sign in with email and password.
+- ๐ ๏ธ **Admin dashboard** โ manage units, accounts, and notes, plus weekly posting statistics. The first person to open the dashboard verifies their email to become the admin.
- ๐๏ธ **Units & topics** โ browse content by Deakin unit code (e.g. `SIT102`, `SIT192`) or topic (e.g. Algorithms, Mathematics).
- ๐พ **Persistent storage** โ all data is stored in a local SQLite database.
@@ -109,6 +110,7 @@ src/
โ โโโ units/[code]/ # Unit pages
โ โโโ search/ # Search page
โ โโโ auth/login/ # Sign in page
+โ โโโ admin/ # Admin dashboard
โ โโโ api/+server.ts # JSON API endpoint
โโโ app.html
```
@@ -124,7 +126,7 @@ src/
The SQLite database contains the following tables:
-- `users` โ Deakin email accounts
+- `users` โ Deakin email accounts (each has a `role`: `user` or `admin`)
- `units` โ Deakin unit codes and names
- `topics` โ CS and maths topics
- `notes` โ shared study notes
diff --git a/src/lib/components/Navbar.svelte b/src/lib/components/Navbar.svelte
index 6c88f0f..581dfd0 100644
--- a/src/lib/components/Navbar.svelte
+++ b/src/lib/components/Navbar.svelte
@@ -1,21 +1,27 @@
@@ -27,6 +33,9 @@
Questions
+ {#if admin}
+ Admin
+ {/if}
{#if auth}