remove text based componets, add blog, minor theming changes

This commit is contained in:
2026-01-30 17:58:52 -05:00
parent 24b8a6c4ec
commit d5d0fb904a
18 changed files with 1510 additions and 322 deletions

View File

@@ -5,16 +5,22 @@
@click="$emit('click')"
@dblclick="$emit('dblclick')"
>
<div class="icon-image w-12 h-12 mb-1 flex items-center justify-center text-4xl">
{{ icon }}
<div class="icon-image w-12 h-12 mb-1 flex items-center justify-center">
<component
:is="icon"
:size="48"
color="white"
/>
</div>
<span class="text-white text-xs text-center drop-shadow-lg">{{ label }}</span>
</div>
</template>
<script setup lang="ts">
import type { Component } from 'vue'
defineProps<{
icon: string
icon: Component
label: string
isSelected?: boolean
}>()