troylusty.com/src/components/Header.astro

20 lines
555 B
Text
Raw Normal View History

2024-12-23 21:18:55 +00:00
---
import { SITE } from "@consts";
import { Icon } from "astro-icon/components";
---
2025-01-17 22:25:09 +00:00
<header class="mx-auto mb-8 w-full max-w-prose space-y-6 pt-12">
2024-12-23 21:18:55 +00:00
<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>