diff options
Diffstat (limited to 'src/data/nav.ts')
| -rw-r--r-- | src/data/nav.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/data/nav.ts b/src/data/nav.ts new file mode 100644 index 0000000..2f9efb9 --- /dev/null +++ b/src/data/nav.ts | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | export const nav: { | ||
| 2 | label: string; | ||
| 3 | url: string; | ||
| 4 | icon: "house" | "package"; | ||
| 5 | hidden?: boolean; | ||
| 6 | }[] = [ | ||
| 7 | { icon: "house", label: "Home", url: "/" }, | ||
| 8 | { icon: "package", label: "Releases", url: "/releases/" }, | ||
| 9 | ]; | ||
