TKO/services/frontend/pages/index.vue

25 lines
471 B
Vue
Raw Normal View History

2025-02-07 15:29:03 +01:00
<template>
2025-02-08 14:50:44 +01:00
<v-parallax
src="https://danceostrava.cz/wp-content/uploads/2021/10/IMG_5203-scaled.jpg"
>
2025-02-16 14:20:40 +01:00
<div class="d-flex flex-column fill-height justify-center">
<h1 class="text-white">
2025-02-08 14:50:44 +01:00
Taneční klub Ostrava
</h1>
2025-02-16 14:20:40 +01:00
<h2>
2025-02-08 14:50:44 +01:00
Naučíme Vás tančit!
2025-02-09 22:09:39 +01:00
</h2>
2025-02-08 14:50:44 +01:00
</div>
</v-parallax>
2025-02-16 21:10:50 +01:00
<calendar/>
<news/>
<trainers/>
<about/>
<advantages/>
<courses/>
<contact-us/>
</template>
2025-02-19 20:51:19 +01:00
2025-02-16 21:10:50 +01:00
<script setup lang="ts">
2025-02-19 20:51:19 +01:00
2025-02-16 21:10:50 +01:00
</script>