<script setup> import { speak } from '../utils/tts'; const { t } = useI18n(); const countdown = ref(3); const showThought = ref(true); const problemText = t('home.problem'); const solutionPoints = computed(() => t('home.solutions', { returnObjects: true })); let interval: NodeJS.Timeout | null = null; onMounted(() => { speak(t('home.title'...Читать больше