samantha's personal website!~ ✨ samanthanguyen.me

update everywhere

+31 -25
+1 -1
src/routes/+layout.svelte
··· 7 7 <title>samanthanguyen.me</title> 8 8 <meta 9 9 name="description" 10 - content="Samantha Nguyen. An artist and software engineer" 10 + content="Samantha Nguyen. artist, oftware engineer" 11 11 /> 12 12 </svelte:head> 13 13 <div
+30 -24
src/routes/+page.svelte
··· 1 1 <script> 2 - import Footer from '$lib/layout/Footer.svelte' 3 - import Header from '$lib/layout/Header.svelte' 4 - import Quote from '$lib/Quote.svelte' 2 + import Footer from "$lib/layout/Footer.svelte"; 3 + import Header from "$lib/layout/Header.svelte"; 4 + import Quote from "$lib/Quote.svelte"; 5 5 </script> 6 6 7 7 <Header 8 - heading={'samanthanguyen.me'} 9 - subheading={'she / her. artist, software engineer, aspiring computer scientist'} /> 8 + heading={"samanthanguyen.me"} 9 + subheading={"she / her. artist, software engineer"} 10 + /> 10 11 <main class="flex flex-col gap-8 lg:gap-12 font-mono"> 11 - <span class={[ 12 - 'flex flex-col gap-6 lg:gap-8', 13 - 'text-xs leading-snug', 14 - 'lg:text-base lg:leading-tight', 15 - 'text-balance', 16 - ]}> 12 + <span 13 + class={[ 14 + "flex flex-col gap-6 lg:gap-8", 15 + "text-xs leading-snug", 16 + "lg:text-base lg:leading-tight", 17 + "text-balance", 18 + ]} 19 + > 17 20 <p> 18 - I've most recently worked as a Research Assistant 19 - at the Security & Privacy Research Lab 20 - of UT Arlington, from May 2024 to December 2024. 21 - My main interests mainly revolve in low-level programming, 21 + I've most recently worked as a Research Assistant at the Security & 22 + Privacy Research Lab of UT Arlington, from May 2024 to December 23 + 2024. My main interests mainly revolve in low-level programming, 22 24 including 23 25 <span class="bg-yellow-400 text-zinc-900">compiler design</span>, 24 - <span class="bg-blue-600 text-zinc-100">programming languages</span>, 26 + <span class="bg-blue-600 text-zinc-100">programming languages</span 27 + >, 25 28 <span class="bg-red-600 text-zinc-100">operating systems</span>, and 26 - <span class="bg-zinc-900 text-zinc-100 dark:bg-zinc-100 dark:text-zinc-900">graphics programming</span>. 29 + <span 30 + class="bg-zinc-900 text-zinc-100 dark:bg-zinc-100 dark:text-zinc-900" 31 + >graphics programming</span 32 + >. 27 33 </p> 28 34 <p> 29 - Besides programming, I've enjoyed fine arts since I was a child, 30 - and hope to one day work in a field where I can combine both, 31 - such as a developer for a video game and/or video game engine. 32 - Here's to the future! 35 + Besides programming, I've enjoyed fine arts since I was a child, and 36 + hope to one day work in a field where I can combine both, such as a 37 + developer for a video game and/or video game engine. Here's to the 38 + future! 33 39 </p> 34 40 </span> 35 41 <Quote author="Honkai Star Rail" styles="text-xs lg:text-sm"> 36 - We adventure together, explore together, and capture wonderful memories together. 37 - In the journeys to come, we will "trailblaze" more beautiful moments, preserving 38 - them with our camera, our eyes, and our hearts. 42 + We adventure together, explore together, and capture wonderful memories 43 + together. In the journeys to come, we will "trailblaze" more beautiful 44 + moments, preserving them with our camera, our eyes, and our hearts. 39 45 </Quote> 40 46 </main> 41 47 <Footer />