develop #1

Merged
aboutrax merged 7 commits from develop into main 2025-10-04 23:36:52 +00:00
Showing only changes of commit b2637de5a6 - Show all commits

View File

@@ -1,2 +1,11 @@
<h1>Welcome to SvelteKit</h1>
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
<script lang="ts">
import AboutMe from '$lib/components/AboutMe.svelte';
import Welcome from '$lib/components/Welcome.svelte';
</script>
<main
class="grid grid-cols-1 gap-2 p-4 md:mx-auto md:max-w-4xl md:grid-cols-3 md:gap-4 lg:max-w-6xl lg:grid-cols-4"
>
<Welcome cssClass="rounded-md border p-4 md:col-span-3 lg:max-h-1/2" />
<AboutMe cssClass="space-y-4 rounded-md border p-4" />
</main>