Private
Public Access
1
0

feat: add projects component

- add projects section to data.json
- add projects types
- add css variables
- update headline styles
- rename intro to profile
This commit is contained in:
2026-01-25 17:11:35 +01:00
parent bc680f6870
commit 8ce5bb4fb5
8 changed files with 215 additions and 23 deletions

View File

@@ -1,9 +1,11 @@
<script lang="ts">
import content from '$lib/data/data.json';
import type { Data } from '$lib/types/data';
import Intro from '$lib/components/Intro.svelte';
import Profile from '$lib/components/Profile.svelte';
import Projects from '$lib/components/Projects.svelte';
let data: Data = content;
</script>
<Intro {...data.intro} />
<Profile {...data.profile} />
<Projects {...data.projects} />