diff --git a/frontend/src/routes/admin/notes/+page.svelte b/frontend/src/routes/admin/notes/+page.svelte
deleted file mode 100644
index 4787f71..0000000
--- a/frontend/src/routes/admin/notes/+page.svelte
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-
Seat Notes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {#if activeSeatId}
- {@const studentName = studentNames[activeSeatId]}
-
Note for {studentName || 'Empty Seat'}
- {#if studentName}
-
-
- {:else}
-
Select a seat occupied by a student to leave a note.
- {/if}
-
- {:else}
-
Click a seat on the map to add or view notes.
- {/if}
-
-
-
Recent Notes
- {#each notes as note}
-
-
{students.find(s => s.id === note.student_id)?.name}:
-
{note.content}
-
- {/each}
-
-
-
-
-
diff --git a/frontend/src/routes/login/+page.svelte b/frontend/src/routes/login/+page.svelte
deleted file mode 100644
index 9fcc2fa..0000000
--- a/frontend/src/routes/login/+page.svelte
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-