blob: 0ee18f09eb8229a76bec87c5b7ca63ae438dd2d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<script lang="ts">
import type { PageProps } from "./$types";
const { data }: PageProps = $props();
</script>
<!-- svelte-ignore a11y_img_redundant_alt: That's not what 'picture' refers to... -->
<img src="/profile_picture_standin.jpeg" width="255" height="255" alt="Dummy profile picture" />
<p>Hej, {data.user.firstName} {data.user.lastName}!</p>
<style>
</style>
|