updated image on about me page

This commit is contained in:
2025-08-10 20:39:54 +02:00
parent 2b75e2d324
commit 95e4b0166c
4 changed files with 13 additions and 9 deletions

View File

@@ -6,11 +6,13 @@
date = "",
subtitle = "",
banner = "",
pixelated,
}: {
title: string;
date?: string;
subtitle?: string;
banner?: string;
pixelated?: boolean;
} = $props();
</script>
@@ -18,7 +20,11 @@
<div class="container">
<div class="subcontainer">
<div class="img-container">
{#if pixelated}
<img class="pixelated-img" src="{banner}">
{:else}
<img src="{banner}">
{/if}
</div>
<div class="text-container">
<h1 class="title">{title}</h1>