diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Nav.astro | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/components/Nav.astro b/src/components/Nav.astro index b3baf19..70f07ea 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -1,5 +1,13 @@ --- -const links = { +interface Links { + home: string, + blog: string, + forgejo: string, + grafana: string, + github: string, +}; + +const links: Links = { home: "/", blog: "/blog", forgejo: "https://git.mydadleft.me", |
