2025-01-05 18:49:48 +00:00
|
|
|
---
|
2025-02-12 13:03:43 +00:00
|
|
|
import instrument from "@fontsource/instrument-serif/files/instrument-serif-latin-400-normal.woff2?url";
|
2025-02-13 00:25:26 +00:00
|
|
|
import { Icon } from "astro-icon/components";
|
2025-01-05 18:49:48 +00:00
|
|
|
---
|
|
|
|
|
2025-01-06 15:37:15 +00:00
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
as="font"
|
|
|
|
type="font/woff2"
|
2025-02-12 13:03:43 +00:00
|
|
|
href={instrument}
|
2025-01-06 15:37:15 +00:00
|
|
|
crossorigin="anonymous"
|
|
|
|
/>
|
|
|
|
|
2025-02-13 00:25:26 +00:00
|
|
|
<section class="animate-reveal opacity-0">
|
|
|
|
<div class="mx-auto flex h-full self-center px-8 py-32">
|
2025-02-12 13:03:43 +00:00
|
|
|
<div
|
2025-02-13 00:25:26 +00:00
|
|
|
class="mx-auto my-auto max-w-xl text-center text-4xl tracking-tight text-balance text-white md:text-6xl"
|
2025-02-12 13:03:43 +00:00
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="text-secondary flex items-center justify-center gap-3 font-semibold"
|
|
|
|
>
|
|
|
|
Hi, I'm Troy,
|
|
|
|
<img
|
|
|
|
src="/assets/icon.png"
|
|
|
|
class="size-12 rounded-xl md:size-16"
|
|
|
|
alt=""
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div class="text-tertiary font-serif font-light tracking-wide italic">
|
|
|
|
digital designer.
|
|
|
|
</div>
|
2025-02-13 00:25:26 +00:00
|
|
|
<div class="group absolute right-0 left-0 mx-auto mt-8 w-fit">
|
|
|
|
<a href="#featured-projects">
|
|
|
|
<Icon
|
|
|
|
name="mdi:chevron-up"
|
|
|
|
class="text-tertiary group-hover:text-secondary h-8 w-auto rotate-180 animate-bounce transition-all duration-300 ease-in-out"
|
|
|
|
title="Move down"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</div>
|
2025-02-12 13:03:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2025-01-05 18:49:48 +00:00
|
|
|
</section>
|