feat: Add breadcrumb navigation to every page

This commit is contained in:
Jesse Wierzbinski 2024-12-04 15:17:47 +01:00
parent 6934a5758e
commit 232abac215
No known key found for this signature in database
15 changed files with 119 additions and 44 deletions

12
index.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
declare module "#app" {
interface PageMeta {
breadcrumbs?: {
text: string;
href?: string;
}[];
requiresAuth?: boolean;
}
}
// It is always important to import/export something when augmenting a type
export {};