diff --git a/src/routes/(app)/notes/archive/+page.svelte b/src/routes/(app)/notes/archive/+page.svelte
deleted file mode 100644
index a0ddb72..0000000
--- a/src/routes/(app)/notes/archive/+page.svelte
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
Archived Notes
-
- {noteService.archivedNotes.length}
- {noteService.archivedNotes.length === 1 ? 'note' : 'notes'} archived
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
openNote(note.id)}
- />
-
diff --git a/src/routes/(app)/notes/trash/+page.svelte b/src/routes/(app)/notes/trash/+page.svelte
deleted file mode 100644
index 4e25bcc..0000000
--- a/src/routes/(app)/notes/trash/+page.svelte
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
-
-
-
-
-
Trash
-
- {noteService.trashedNotes.length}
- {noteService.trashedNotes.length === 1 ? 'note' : 'notes'} in trash • Auto-delete after
- 30 days
-
-
-
-
-
-
-
-
-
-
-
-
- {#if noteService.trashedNotes.length > 0}
-
- {/if}
-
-
-
-
-
-
-
-
-
-
openNote(note.id)}
- />
-
-
-
-
-
-
- Empty trash?
-
- This will permanently delete all notes in the trash. This action cannot be undone.
-
-
-
- Cancel
-
-
-
-