first commit

This commit is contained in:
Troy 2024-12-23 21:18:55 +00:00
commit ff7c974867
Signed by: troy
GPG key ID: DFC06C02ED3B4711
227 changed files with 12908 additions and 0 deletions

View file

@ -0,0 +1,19 @@
---
import { SITE } from "@consts";
import { Icon } from "astro-icon/components";
---
<header id="header" class="mx-auto w-full max-w-screen-lg p-4">
<div
class="flex h-12 items-center justify-between leading-[0px] text-secondary"
>
<a class="inline-flex items-center" href="/" title={SITE.TITLE}>
<Icon name="icon" title={SITE.TITLE} class="h-8 w-auto ease-in-out" />
<div
class="ml-2 hidden flex-none text-sm font-bold capitalize md:visible lg:block"
>
Troy Lusty
</div>
</a>
</div>
</header>