TKO/services/frontend/components/menu/Footer.vue

63 lines
2.1 KiB
Vue
Raw Permalink Normal View History

2025-02-07 17:29:15 +01:00
<template>
2025-03-05 16:21:16 +01:00
<v-footer class="footer">
2025-02-08 14:50:44 +01:00
<v-container class="text-white">
<v-row>
<v-col
cols="12"
md="4"
>
2025-02-16 14:20:40 +01:00
<h5>Kontakt</h5>
2025-02-09 22:09:39 +01:00
<v-divider :thickness="3" />
<div class="footer-text">Tomáš Ožana</div>
<div class="footer-text">Zimmlerova 2893/47, Ostrava</div>
<div class="footer-text">tanecniklub-ostrava@email.cz</div>
<div class="footer-text">+420774908180</div>
2025-02-08 14:50:44 +01:00
</v-col>
2025-02-07 17:29:15 +01:00
2025-02-08 14:50:44 +01:00
<v-col
cols="12"
md="4"
>
2025-02-16 14:20:40 +01:00
<h5>Tréningové hodiny</h5>
2025-02-09 22:09:39 +01:00
<v-divider :thickness="3" />
2025-02-16 14:20:40 +01:00
<div class="to_left">Pondělí: <span class="to_right">16:30 - 18:30 (VS)</span></div>
<div class="to_left">Úterý: <span class="to_right">16:30 - 18:30 (VS)</span></div>
<div class="to_left">Středa: <span class="to_right">16:30 - 18:30 (VS)</span></div>
<div class="to_left">Čtvrtek: <span class="to_right">16:30 - 18:30 (VS)</span></div>
<div class="to_left">Pátek: <span class="to_right">16:30 - 18:30 (VS)</span></div>
<div class="to_left">Sobota: <span class="to_right">16:30 - 18:30 (VS)</span></div>
<div class="to_left">Neděle: <span class="to_right">16:30 - 18:30 (VS)</span></div>
2025-02-08 14:50:44 +01:00
</v-col>
<v-col
cols="12"
md="4"
>
2025-02-16 14:20:40 +01:00
<h5>Sociální sítě</h5>
2025-02-09 22:09:39 +01:00
<v-divider :thickness="3" />
2025-02-16 14:20:40 +01:00
<big-icon icon="mdi-facebook" />
<big-icon icon="mdi-instagram" />
<big-icon icon="mdi-youtube" />
2025-02-08 14:50:44 +01:00
</v-col>
</v-row>
2025-02-09 22:09:39 +01:00
<v-divider :thickness="3" style="margin-top: 60px" />
2025-02-08 14:50:44 +01:00
<v-row>
<v-col
style="text-align: left"
>
2025-03-05 16:21:16 +01:00
<h5>Taneční klub Ostrava s.r.o. © {{date}}</h5>
2025-02-08 14:50:44 +01:00
</v-col>
<v-col
style="text-align: right"
>
<h5>created by Beeebooo Crew</h5>
</v-col>
</v-row>
</v-container>
</v-footer>
2025-02-07 17:29:15 +01:00
</template>
<script setup lang="ts">
2025-02-16 14:20:40 +01:00
import './assets/css/main.css'
2025-02-07 17:29:15 +01:00
2025-03-05 16:21:16 +01:00
const date = new Date().getFullYear()
2025-02-16 14:20:40 +01:00
</script>