···11<script>
22- import { IconBrandBluesky, IconBrandGithub } from '@tabler/icons-svelte'
33- import { twJoin, twMerge } from 'tailwind-merge'
22+ import Footer from '$lib/Footer.svelte'
33+ import { twJoin } from 'tailwind-merge'
44</script>
5566-<section class={twJoin(
77- "flex flex-col gap-6 lg:gap-8",
88- "selection:bg-pink-200 selection:text-pink-700",
99- "dark:selection:bg-yellow-400 selection:text-zinc-950"
1010-)}>
1111- <header class="flex flex-col gap-2">
1212- <h1 class={twMerge(
1313- "pt-12 flex items-end",
1414- "text-2xl lg:text-4xl font-domine font-bold lg:font-medium",
1515- )}>
1616- samanthanguyen.me
1717- </h1>
1818- <span class={twJoin(
1919- "text-sm lg:text-base dark:text-zinc-500",
2020- "font-domine",
2121- )}>
2222- she / her. artist, software engineer, aspiring computer scientist
2323- </span>
2424- </header>
2525- <main class="flex flex-col gap-8 lg:gap-12">
2626- <span class="flex flex-col gap-6 lg:gap-8 font-domine text-sm lg:text-base text-left lg:text-balance">
2727- <p>
2828- I've most recently worked as a Research Assistant
2929- at the Security & Privacy Research Lab
3030- of UT Arlington, from May 2024 to December 2024.
3131- My main interests mainly revolve in low-level programming,
3232- including compiler design, programming languages, operating
3333- systems, and graphics programming.
3434- </p>
3535- <p>
3636- Besides programming, I've enjoyed fine arts since I was a child,
3737- and hope to one day work in a field where I can combine both,
3838- such as a developer for a video game and/or video game engine.
3939- {`:-)`}
4040- </p>
4141- </span>
4242- <blockquote class="flex flex-col gap-2 italic font-sans text-sm">
4343- <p>
4444- "We adventure together, explore together, and capture wonderful memories together.
4545- In the journeys to come, we will "trailblaze" more beautiful moments, preserving
4646- them with our camera, our eyes, and our hearts."
4747- </p>
4848- <cite class="text-right">—Honkai Star Rail</cite>
4949- </blockquote>
5050- </main>
5151- <footer class={twJoin(
5252- "mt-[-1rem] lg:mt-0 pt-4 flex flex-row gap-4 justify-end",
5353- "border-0 lg:border-t border-[#CFB4C5] dark:border-zinc-800",
66+<header class="flex flex-col gap-2">
77+ <h1 class={twJoin(
88+ "pt-12 flex items-end",
99+ "text-2xl lg:text-4xl font-domine font-bold lg:font-medium",
5410 )}>
5555- <a href="https://bsky.app/profile/samanthanguyen.me" title="@samanthanguyen.me on Bluesky">
5656- <IconBrandBluesky
5757- size={32}
5858- stroke={1}
5959- class={twJoin("text-zinc-950 hover:fill-zinc-950", "dark:text-gray-50 hover:fill-gray-50")} />
6060- </a>
6161- <a href="https://github.com/neoncitylights" title="@neoncitylights on GitHub">
6262- <IconBrandGithub
6363- size={32}
6464- stroke={1}
6565- class={twJoin("text-zinc-950 hover:fill-zinc-950", "dark:text-gray-50 hover:fill-gray-50")} />
6666- </a>
6767- </footer>
6868-</section>
1111+ samanthanguyen.me
1212+ </h1>
1313+ <span class={twJoin(
1414+ "text-sm lg:text-base dark:text-zinc-500",
1515+ "font-domine",
1616+ )}>
1717+ she / her. artist, software engineer, aspiring computer scientist
1818+ </span>
1919+</header>
2020+<main class="flex flex-col gap-8 lg:gap-12">
2121+ <span class="flex flex-col gap-6 lg:gap-8 font-domine text-sm lg:text-base text-left lg:text-balance">
2222+ <p>
2323+ I've most recently worked as a Research Assistant
2424+ at the Security & Privacy Research Lab
2525+ of UT Arlington, from May 2024 to December 2024.
2626+ My main interests mainly revolve in low-level programming,
2727+ including compiler design, programming languages, operating
2828+ systems, and graphics programming.
2929+ </p>
3030+ <p>
3131+ Besides programming, I've enjoyed fine arts since I was a child,
3232+ and hope to one day work in a field where I can combine both,
3333+ such as a developer for a video game and/or video game engine.
3434+ {`:-)`}
3535+ </p>
3636+ </span>
3737+ <blockquote class="flex flex-col gap-2 italic font-sans text-sm">
3838+ <p>
3939+ "We adventure together, explore together, and capture wonderful memories together.
4040+ In the journeys to come, we will "trailblaze" more beautiful moments, preserving
4141+ them with our camera, our eyes, and our hearts."
4242+ </p>
4343+ <cite class="text-right">—Honkai Star Rail</cite>
4444+ </blockquote>
4545+</main>
4646+<Footer />