updating homepage with Welcome and AboutMeComponent
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user