2025-02-07 17:29:15 +01:00
|
|
|
<template>
|
2025-02-09 22:09:39 +01:00
|
|
|
<h1>Naši trenéři a lektoři</h1>
|
|
|
|
<v-row style="margin-bottom: 2rem;">
|
|
|
|
<v-col class="text-center" cols="12" md="3" v-for="lector in lectors" :key="lector.id">
|
2025-02-08 14:50:44 +01:00
|
|
|
<v-avatar
|
2025-02-09 22:09:39 +01:00
|
|
|
color="none"
|
|
|
|
rounded="1"
|
2025-02-08 14:50:44 +01:00
|
|
|
size="150"
|
2025-02-09 22:09:39 +01:00
|
|
|
style="margin: 30px"
|
2025-02-08 14:50:44 +01:00
|
|
|
>
|
2025-02-09 22:09:39 +01:00
|
|
|
<v-img :src="lector.img" cover></v-img>
|
2025-02-08 14:50:44 +01:00
|
|
|
</v-avatar>
|
2025-02-09 22:09:39 +01:00
|
|
|
<h2>{{lector.name}}</h2>
|
|
|
|
<div class="subtitle">{{ lector.desc }}</div>
|
2025-02-08 14:50:44 +01:00
|
|
|
</v-col>
|
|
|
|
</v-row>
|
2025-02-07 17:29:15 +01:00
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
2025-02-08 14:50:44 +01:00
|
|
|
const lectors = [
|
2025-02-09 22:09:39 +01:00
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
name: "Ondřej Gilar",
|
|
|
|
img: "https://cdn.vuetifyjs.com/images/profiles/marcus.jpg",
|
|
|
|
desc: "Trenér - latinskoamerické tance a Pro-AM",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
name: "Leona Hruštincová",
|
|
|
|
img: "https://cdn.vuetifyjs.com/images/profiles/marcus.jpg",
|
|
|
|
desc: "Lektorka - tance pro děti",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 1,
|
|
|
|
name: "Ondřej Gilar",
|
|
|
|
img: "https://cdn.vuetifyjs.com/images/profiles/marcus.jpg",
|
|
|
|
desc: "Trenér - latinskoamerické tance a Pro-AM",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 2,
|
|
|
|
name: "Leona Hruštincová",
|
|
|
|
img: "https://cdn.vuetifyjs.com/images/profiles/marcus.jpg",
|
|
|
|
desc: "Lektorka - tance pro děti",
|
|
|
|
},
|
2025-02-08 14:50:44 +01:00
|
|
|
]
|
2025-02-07 17:29:15 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
2025-02-09 22:09:39 +01:00
|
|
|
h1 {
|
|
|
|
font-family: 'Playfair Display', serif; /* Or a similar elegant font */
|
|
|
|
font-size: 3rem;
|
|
|
|
color: #333; /* Dark gray */
|
|
|
|
text-align: center;
|
|
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow */
|
|
|
|
margin-top: 2rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2025-02-07 17:29:15 +01:00
|
|
|
|
2025-02-09 22:09:39 +01:00
|
|
|
h2 {
|
|
|
|
font-family: 'Playfair Display', serif;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1.7rem;
|
|
|
|
color: #666; /* Light gray */
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
font-family: 'Playfair Display', serif; /* Or a similar elegant font */
|
|
|
|
font-size: 1rem;
|
|
|
|
color: #333; /* Dark gray */
|
|
|
|
text-align: center;
|
|
|
|
}
|
2025-02-07 17:29:15 +01:00
|
|
|
</style>
|