route breadcrumbs, improve sidebar, basic folder layout

This commit is contained in:
2025-07-11 05:20:53 +02:00
parent 342b5aa554
commit c281b9a673
39 changed files with 883 additions and 29 deletions

6
types/index.ts Normal file
View File

@@ -0,0 +1,6 @@
export type DirectoryEntryType = 'file' | 'directory';
export type BreadcrumbData = {
name: string;
href: string;
};