Files
tp/begushiybashkir/bbvue/src/views/About.vue
T

26 lines
892 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="page">
<h1>👥 О нашем клубе</h1>
<p>Беговой клуб "Бегущий Башкир" - это сообщество единомышленников в Уфе</p>
<div class="content-section">
<h2>Наш тренер</h2>
<div class="coach-card">
<img src="https://via.placeholder.com/150/2e8b57/ffffff?text=ЗТ"
alt="Тренер"
style="border-radius: 50%; margin: 1rem 0;">
<h3>Аминев Загир</h3>
<p>Мастер спорта по полиатлону, КМС по скайраннингу</p>
</div>
</div>
<router-link to="/training" class="btn">Посмотреть расписание</router-link>
</div>
</template>
<script>
export default {
// eslint-disable-next-line vue/multi-word-component-names
name: 'About'
}
</script>