Private
Public Access
1
0

feat: add contact component

- update css
- update data.json
- update types
This commit is contained in:
2026-02-03 19:45:55 +01:00
parent 20f8d06091
commit 16237ad80a
5 changed files with 200 additions and 2 deletions

View File

@@ -4,10 +4,12 @@
import Profile from '$lib/components/Profile.svelte';
import Projects from '$lib/components/Projects.svelte';
import Skills from '$lib/components/Skills.svelte';
import Contact from '$lib/components/Contact.svelte';
let data: Data = content;
</script>
<Profile {...data.profile} />
<Projects {...data.projects} />
<Skills {...data.skills} />
<Skills {...data.skills} />
<Contact {...data.contact} />