mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 01:21:22 +00:00
16 lines
No EOL
464 B
Svelte
16 lines
No EOL
464 B
Svelte
<script>
|
|
import { calculateAge } from "$lib/calculate-age";
|
|
|
|
export let age = calculateAge('1994-10-18');
|
|
export let location = "Zaandam, Netherlands";
|
|
export let loves = "cats and whiskey";
|
|
export let passion = "solving problems with code and automation";
|
|
</script>
|
|
|
|
<main>
|
|
<h1>Hello, I'm Bart van der Braak!</h1>
|
|
<p>I'm {age} years old</p>
|
|
<p>I'm located in {location}.</p>
|
|
<p>I love {loves}.</p>
|
|
<p>I'm passionate about {passion}.</p>
|
|
</main> |