1
0
mirror of https://github.com/djkotowski/personal-website.git synced 2026-06-20 13:02:47 -05:00

Update Svelte and other dependencies

This commit is contained in:
2025-03-11 00:26:45 -05:00
parent 1e652d9818
commit fc0d884cce
11 changed files with 525 additions and 1033 deletions
+8 -4
View File
@@ -1,13 +1,17 @@
<script lang="ts">
export let title: string;
export let imageUrl: string;
export let imageAlt: string;
type Props = {
children?: any
title: string
imageUrl: string
imageAlt: string
};
let { children, title, imageUrl, imageAlt }: Props = $props()
</script>
<div class="px-6 py-1 pb-10 sm:pt-32 sm:pb-24 lg:px-8">
<div class="mx-auto max-w-2xl text-center">
<img class="mx-auto mb-6 w-32 h-32 lg:w-48 lg:h-48 rounded-full" src={imageUrl} alt={imageAlt} />
<h2 class="text-4xl lg:text-6xl font-bold tracking-tight text-gray-100 sm:text-6x1">{title}</h2>
<slot />
{@render children?.()}
</div>
</div>