1--- 2import Btn from "./NavbarLink.astro" 3import { Code } from "@lucide/astro" 4 5let href = Astro.url.toString() 6href = href.replace(Astro.url.host.toString(), "") 7href = href.replace("https://", "") 8href = href.replace("http://", "") 9--- 10<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"> 11 <div class="flex gap-4 items-center"> 12 <a href="/doodlecat.png"><img src="doodlecat.png" width="48px" height="48px" class="rounded-full" /></a> 13 <span class="flex flex-col"> 14 <span>~/banana{href}</span> 15 <a href="https://tangled.org/@banana.tngl.sh/mywebsite-2026" 16 class="text-xs text-ctp-overlay0 flex gap-1 hover:underline"><Code size="16" />src</a> 17 </span> 18 </div> 19 <div class="flex gap-6 items-center"> 20 <Btn page="home"/> 21 <Btn page="projects"/> 22 <Btn page="experience"/> 23 </div> 24</div> 25<style> 26@reference "../styles/global.css" 27a { 28 @apply ; 29} 30</style>