TKO/services/frontend/components/Trainers.vue

57 lines
1.5 KiB
Vue
Raw Normal View History

2025-02-07 17:29:15 +01:00
<template>
2025-03-05 16:21:16 +01:00
<v-parallax
class="trainers__parallax"
src="public/img/black-pink.jpg"
>
<v-container id="trainers">
<v-card class="trainers">
<v-card-title class="about__title">Naši trenéři a lektoři</v-card-title>
<v-card-subtitle class="about__subtitle">Seznamte se s námi!</v-card-subtitle>
<v-row>
<v-col class="text-center" cols="12" md="3" v-for="lector in lectors" :key="lector.id">
<v-avatar
color="none"
rounded="1"
size="150"
style="margin: 30px"
>
<v-img :src="lector.img" cover></v-img>
</v-avatar>
<v-card-subtitle class="about__subtitle">{{lector.name}}</v-card-subtitle>
<v-card-text class="about__text">{{ lector.desc }}</v-card-text>
</v-col>
</v-row>
</v-card>
</v-container>
</v-parallax>
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-08 14:50:44 +01:00
const lectors = [
2025-02-09 22:09:39 +01:00
{
id: 1,
name: "Ondřej Gilar",
2025-03-05 16:21:16 +01:00
img: "/trainers/img.png",
2025-02-09 22:09:39 +01:00
desc: "Trenér - latinskoamerické tance a Pro-AM",
},
{
id: 2,
name: "Leona Hruštincová",
2025-03-05 16:21:16 +01:00
img: "/trainers/img.png",
2025-02-09 22:09:39 +01:00
desc: "Lektorka - tance pro děti",
},
{
id: 1,
name: "Ondřej Gilar",
2025-03-05 16:21:16 +01:00
img: "/trainers/img.png",
2025-02-09 22:09:39 +01:00
desc: "Trenér - latinskoamerické tance a Pro-AM",
},
{
id: 2,
name: "Leona Hruštincová",
2025-03-05 16:21:16 +01:00
img: "/trainers/img.png",
2025-02-09 22:09:39 +01:00
desc: "Lektorka - tance pro děti",
},
2025-02-08 14:50:44 +01:00
]
2025-02-16 14:20:40 +01:00
</script>