created ImageSubtitle element; added content to blog post 1

This commit is contained in:
2026-01-28 23:10:36 +01:00
parent 9cdae8e070
commit 75674c4992
23 changed files with 137 additions and 90 deletions

View File

@@ -0,0 +1,21 @@
<script lang="ts">
let {
content
}: {
content: string;
} = $props();
</script>
<span class="image-subtitle">{content}</span>
<style>
.image-subtitle::before {
content: "↳ ";
}
.image-subtitle {
display: block;
width: 80%;
margin: 0 auto;
font-size: 1rem;
}
</style>