diff options
author | Linnnus <[email protected]> | 2025-02-17 20:28:59 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-02-17 20:28:59 +0100 |
commit | 2b309097ca145651618234476160fb30405eabe7 (patch) | |
tree | 20321cf83d18c0c3c3a0a745626565074ea69a41 /app/src/routes/profile/+page.svelte |
Initial commit
Diffstat (limited to 'app/src/routes/profile/+page.svelte')
-rw-r--r-- | app/src/routes/profile/+page.svelte | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/src/routes/profile/+page.svelte b/app/src/routes/profile/+page.svelte new file mode 100644 index 0000000..0ee18f0 --- /dev/null +++ b/app/src/routes/profile/+page.svelte @@ -0,0 +1,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> |