WIP website
1---
2import Btn from "./NavbarLink.astro"
3---
4<div class="bg-ctp-base w-full pl-8 pr-8 pt-4 pb-4 flex justify-between rounded-bl-2xl rounded-br-2xl">
5 <div class="flex gap-4 items-center">
6 <a href="/doodlecat.png"><img src="doodlecat.png" width="48px" height="48px" class="rounded-full" /></a>
7 <span>~/banana/home</span>
8 </div>
9 <div class="flex gap-6 items-center">
10 <Btn page="home"/>
11 <Btn page="projects"/>
12 <Btn page="experience"/>
13 </div>
14</div>
15<style>
16@reference "../styles/global.css"
17a {
18 @apply ;
19}
20</style>