Initial commit WIP

This commit is contained in:
Mike Conrad
2025-05-08 19:18:45 -04:00
commit 09cbc3f5a3
235 changed files with 25013 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<script setup lang="ts">
const { src, alt } = defineProps<{
src: string;
alt?: string;
}>();
</script>
<template>
<NuxtImg
v-if="src"
placeholder
sizes="sm:100vw md:70vw"
class="w-full"
:src="src"
:alt="alt"
loading="lazy"
/>
</template>