···11<script>
22- import Footer from '$lib/Footer.svelte'
33- import Header from '$lib/Header.svelte'
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'
46</script>
5768<Header />
79<main class="flex flex-col gap-8 lg:gap-12">
88- <span class="flex flex-col gap-6 lg:gap-8 font-domine text-sm lg:text-base text-left lg:text-balance">
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+ )}>
914 <p>
1015 I've most recently worked as a Research Assistant
1116 at the Security & Privacy Research Lab
···1823 Besides programming, I've enjoyed fine arts since I was a child,
1924 and hope to one day work in a field where I can combine both,
2025 such as a developer for a video game and/or video game engine.
2121- {`:-)`}
2626+ Here's to the future. {`:-)`}
2227 </p>
2328 </span>
2424- <blockquote class="flex flex-col gap-2 italic font-sans text-sm">
2525- <p>
2626- "We adventure together, explore together, and capture wonderful memories together.
2727- In the journeys to come, we will "trailblaze" more beautiful moments, preserving
2828- them with our camera, our eyes, and our hearts."
2929- </p>
3030- <cite class="text-right">—Honkai Star Rail</cite>
3131- </blockquote>
2929+ <Quote author="Honkai Star Rail">
3030+ We adventure together, explore together, and capture wonderful memories together.
3131+ In the journeys to come, we will "trailblaze" more beautiful moments, preserving
3232+ them with our camera, our eyes, and our hearts.
3333+ </Quote>
3234</main>
3335<Footer />
···4455/** @type {import('@sveltejs/kit').Config} */
66const config = {
77- // Consult https://svelte.dev/docs/kit/integrations
88- // for more information about preprocessors
99- preprocess: [vitePreprocess(), mdsvex()],
1010-1111- kit: {
77+ // Consult https://svelte.dev/docs/kit/integrations
88+ // for more information about preprocessors
99+ preprocess: [vitePreprocess(), mdsvex()],
1010+ kit: {
1211 // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
1312 // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
1413 // See https://svelte.dev/docs/kit/adapters for more information about adapters.
1514 adapter: adapter()
1615 },
1616+ extensions: [".svelte", ".svx"]
1717+}
17181818- extensions: [".svelte", ".svx"]
1919-};
2020-2121-export default config;
1919+export default config