chore: add source link

Changed files
+6 -1
src
components
+6 -1
src/components/Navbar.astro
···
---
import Btn from "./NavbarLink.astro"
let href = Astro.url.toString()
href = href.replace(Astro.url.host.toString(), "")
···
<div class="absolute bg-ctp-base w-full pl-8 pr-8 pt-4 pb-4 flex justify-between rounded-bl-2xl rounded-br-2xl">
<div class="flex gap-4 items-center">
<a href="/doodlecat.png"><img src="doodlecat.png" width="48px" height="48px" class="rounded-full" /></a>
-
<span>~/banana{href}</span>
</div>
<div class="flex gap-6 items-center">
<Btn page="home"/>
···
---
import Btn from "./NavbarLink.astro"
+
import { Code } from "@lucide/astro"
let href = Astro.url.toString()
href = href.replace(Astro.url.host.toString(), "")
···
<div class="absolute bg-ctp-base w-full pl-8 pr-8 pt-4 pb-4 flex justify-between rounded-bl-2xl rounded-br-2xl">
<div class="flex gap-4 items-center">
<a href="/doodlecat.png"><img src="doodlecat.png" width="48px" height="48px" class="rounded-full" /></a>
+
<span class="flex flex-col">
+
<span>~/banana{href}</span>
+
<a href="https://tangled.org/@banana.tngl.sh/mywebsite-2026"
+
class="text-xs text-ctp-overlay0 flex gap-1 hover:underline"><Code size="16" />src</a>
+
</span>
</div>
<div class="flex gap-6 items-center">
<Btn page="home"/>