···11-<h1>Welcome to SvelteKit</h1>
22-<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
11+<script>
22+ import { IconBrandBluesky, IconBrandGithub } from '@tabler/icons-svelte'
33+ import { twMerge } from 'tailwind-merge'
44+</script>
55+<section class="flex flex-col gap-8">
66+ <header class="flex flex-col gap-2">
77+ <h1 class={twMerge(
88+ "h-[200px] flex items-end",
99+ "text-4xl font-domine",
1010+ )}>
1111+ samanthanguyen.me
1212+ </h1>
1313+ <span class="font-domine">she/her. artist, software engineer, aspiring computer scientist</span>
1414+ </header>
1515+ <main class="flex flex-col gap-4">
1616+ <p class="font-domine">
1717+ I've most recently worked as a Research Assistant
1818+ at the Security & Privacy Research Lab
1919+ of UT Arlington, from May 2024 to December 2024.
2020+ My main interests mainly revolve in low-level programming,
2121+ including compiler design, programming languages, operating
2222+ systems, and graphics programming.
2323+ </p>
2424+ <p class="font-domine">
2525+ Besides programming, I've enjoyed fine arts since I was a child,
2626+ and hope to one day work in a field where I can combine both,
2727+ such as a developer for a video game and/or video game engine.
2828+ {`:-)`}
2929+ </p>
3030+ <blockquote class="italic font-sans text-sm mt-8">
3131+ <p>
3232+ "We adventure together, explore together, and capture wonderful memories together.
3333+ In the journeys to come, we will "trailblaze" more beautiful moments, preserving
3434+ them with our camera, our eyes, and our hearts."
3535+ </p>
3636+ <cite class="text-right">—Honkai Star Rail</cite>
3737+ </blockquote>
3838+ </main>
3939+ <footer class="border-t-2 border-zinc-300 pt-4 flex flex-row gap-4 justify-end">
4040+ <a href="https://bsky.app/profile/samanthanguyen.me" title="@samanthanguyen.me on Bluesky">
4141+ <IconBrandBluesky size={32} stroke={1} class="text-zinc-950" />
4242+ </a>
4343+ <a href="https://github.com/neoncitylights" title="@neoncitylights on GitHub">
4444+ <IconBrandGithub size={32} stroke={1} class="text-zinc-950" />
4545+ </a>
4646+ </footer>
4747+</section>