2024-10-19 22:46:11 +02:00
|
|
|
<template>
|
2025-01-17 17:27:22 +01:00
|
|
|
<figure class="space-y-3 w-full">
|
|
|
|
|
<nuxt-img :src="image" :width="width" :height="height" format="webp" alt="" :preload="true"
|
|
|
|
|
class="drop-shadow-2xl w-full rounded bg-zinc-900 ring-1 ring-white/10" />
|
|
|
|
|
<figcaption v-if="caption" class="text-center text-sm text-gray-400">{{ caption }}</figcaption>
|
|
|
|
|
</figure>
|
2024-10-19 22:46:11 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
defineProps<{
|
|
|
|
|
image: string;
|
2024-10-19 23:33:46 +02:00
|
|
|
width?: number;
|
|
|
|
|
height?: number;
|
2025-01-17 17:27:22 +01:00
|
|
|
caption?: string;
|
2024-10-19 22:46:11 +02:00
|
|
|
}>();
|
|
|
|
|
</script>
|