- add projects section to data.json - add projects types - add css variables - update headline styles - rename intro to profile
20 lines
235 B
Svelte
20 lines
235 B
Svelte
<script lang="ts">
|
|
import type { ProjectEntry } from '$lib/types/data';
|
|
|
|
let {
|
|
title,
|
|
description,
|
|
taskHeadline,
|
|
tasks,
|
|
toolsHeadline,
|
|
tools
|
|
}: ProjectEntry = $props();
|
|
</script>
|
|
|
|
<article>
|
|
|
|
</article>
|
|
|
|
<style>
|
|
|
|
</style> |