summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/Footer.astro11
-rw-r--r--src/components/Nav.astro2
2 files changed, 9 insertions, 4 deletions
diff --git a/src/components/Footer.astro b/src/components/Footer.astro
index 5940aee..0a244c0 100644
--- a/src/components/Footer.astro
+++ b/src/components/Footer.astro
@@ -6,8 +6,11 @@ const { stdout: gitCommit } = await execa("git", ["rev-parse", "HEAD"]);
---
<div class="flex">
-<div class="flex flex-col items-center gap-1 p-3 mx-auto">
- <a class="text-text text-xs" href="https://github.com/getchoo/getchoo.github.io">source</a>
- <p class="text-text text-xs">commit: {gitCommit}</p>
-</div>
+ <div class="flex flex-col items-center gap-1 p-3 mx-auto">
+ <a
+ class="text-text text-xs"
+ href="https://github.com/getchoo/getchoo.github.io">source</a
+ >
+ <p class="text-text text-xs">commit: {gitCommit}</p>
+ </div>
</div>
diff --git a/src/components/Nav.astro b/src/components/Nav.astro
index d25b180..b3baf19 100644
--- a/src/components/Nav.astro
+++ b/src/components/Nav.astro
@@ -2,6 +2,8 @@
const links = {
home: "/",
blog: "/blog",
+ forgejo: "https://git.mydadleft.me",
+ grafana: "https://grafana.mydadleft.me",
github: "https://github.com/getchoo",
};
---