feat: add link to status page

This commit is contained in:
trafficlunar 2025-05-03 17:52:29 +01:00
parent f373f6bf66
commit 88e50ae11e
2 changed files with 5 additions and 0 deletions

View file

@ -12,6 +12,7 @@ import LocationIcon from "../assets/icons/location.svg";
<section>
<legend>about</legend>
<p>Hey there, I'm <strong class="text-peach">trafficlunar</strong>. I'm a 15 year old self-proclaimed full-stack developer and sysadmin.</p>
<p>You can view what I'm currently doing by going <a href="/status" class="link">here</a>.</p>
<div class="flex gap-1 mt-2">
<div class="text-sm rounded-lg bg-peach/25 text-peach w-fit px-2 py-0.5 flex gap-1 items-center">

View file

@ -81,6 +81,10 @@ section legend {
@apply bg-mantle/75 absolute -left-[1px] bottom-full px-2 py-0.5 text-overlay2 font-medium text-xs rounded-t-md border border-surface0 border-b-0 font-sans;
}
.link {
@apply text-peach underline decoration-peach hover:bg-peach hover:text-base;
}
[data-tooltip] {
@apply relative z-10;
}