feat: fill pages
All checks were successful
Publish Docker Images / build-and-publish (push) Successful in 10m25s

This commit is contained in:
2025-11-11 19:12:21 +01:00
parent 3f828a754b
commit fceeb5307c
38 changed files with 634 additions and 65 deletions

View File

@@ -0,0 +1,21 @@
<template>
<UPageCard class="bg-background-100 my-10">
<p class="text-xl">
{{ $t('pages.vocal-synthesis.tools') }}
</p>
<div class="flex flex-row gap-5 flex-wrap">
<UBadge
v-for="tool in data?.tools"
:key="tool"
size="md"
variant="solid"
>{{ tool }}</UBadge
>
</div>
</UPageCard>
</template>
<script setup lang="ts">
const { getCachedData } = useDataJson('vocalSynth');
const data = getCachedData();
</script>