fix: update heading elements for consistency; change h3 to h2 and adjust font sizes

This commit is contained in:
2025-09-04 16:30:43 +02:00
parent caed661fe3
commit 8bb83a4e07

View File

@@ -17,11 +17,11 @@ const { t } = useI18n()
scale: 1, scale: 1,
transition: { ease: 'linear' }, transition: { ease: 'linear' },
}" }"
class="font-bold text-3xl sm:text-4xl duration-200" class="font-bold text-5xl duration-200"
> >
{{ t('chat.welcome') }} {{ t('chat.welcome') }}
</h1> </h1>
<h3 <h2
v-motion v-motion
:initial="{ :initial="{
opacity: 0, opacity: 0,
@@ -37,9 +37,9 @@ const { t } = useI18n()
ease: 'linear', ease: 'linear',
}, },
}" }"
class="text-3xl sm:text-4xl bg-gradient-to-r from-inverted/40 to-inverted/75 to-50% bg-clip-text text-transparent font-medium duration-200" class="text-3xl bg-gradient-to-r from-inverted/40 to-inverted/75 to-50% bg-clip-text text-transparent font-medium duration-200"
> >
{{ t('chat.ask') }} {{ t('chat.ask') }}
</h3> </h2>
</div> </div>
</template> </template>