···22 import Footer from '$lib/layout/Footer.svelte'
33 import Header from '$lib/layout/Header.svelte'
44 import Quote from '$lib/Quote.svelte'
55- import { twJoin } from 'tailwind-merge'
65</script>
7687<Header />
99-<main class="flex flex-col gap-8 lg:gap-12">
1010- <span class={twJoin(
1111- "flex flex-col gap-6 lg:gap-8",
1212- "font-domine text-sm lg:text-base text-left lg:text-balance"
1313- )}>
88+<main class="flex flex-col gap-8 lg:gap-12 font-mono">
99+ <span class={[
1010+ 'flex flex-col gap-6 lg:gap-8',
1111+ 'text-xs leading-snug',
1212+ 'lg:text-base lg:leading-tight',
1313+ 'text-balance',
1414+ ]}>
1415 <p>
1516 I've most recently worked as a Research Assistant
1617 at the Security & Privacy Research Lab
1718 of UT Arlington, from May 2024 to December 2024.
1819 My main interests mainly revolve in low-level programming,
1919- including compiler design, programming languages, operating
2020- systems, and graphics programming.
2020+ including
2121+ <span class="bg-yellow-400 text-zinc-900">compiler design</span>,
2222+ <span class="bg-blue-600 text-zinc-100">programming languages</span>,
2323+ <span class="bg-red-600 text-zinc-100">operating systems</span>, and
2424+ <span class="bg-zinc-900 text-zinc-100 dark:bg-zinc-100 dark:text-zinc-900">graphics programming</span>.
2125 </p>
2226 <p>
2327 Besides programming, I've enjoyed fine arts since I was a child,
2428 and hope to one day work in a field where I can combine both,
2529 such as a developer for a video game and/or video game engine.
2626- Here's to the future. {`:-)`}
3030+ Here's to the future!
2731 </p>
2832 </span>
2933 <Quote author="Honkai Star Rail">
···11-import { mdsvex } from "mdsvex";
22-import adapter from '@sveltejs/adapter-cloudflare';
33-import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
11+import { mdsvex } from 'mdsvex'
22+import adapter from '@sveltejs/adapter-cloudflare'
33+import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
4455/** @type {import('@sveltejs/kit').Config} */
66const config = {
···1111 // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
1212 // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
1313 // See https://svelte.dev/docs/kit/adapters for more information about adapters.
1414- adapter: adapter()
1414+ adapter: adapter(),
1515 },
1616- extensions: [".svelte", ".svx"]
1616+ extensions: ['.svelte', '.svx'],
1717}
18181919export default config