43 lines
1.3 KiB
Vue
43 lines
1.3 KiB
Vue
<template>
|
|
<div class="min-h-full py-16 bg-gray-50">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<h1 class="text-4xl sm:text-5xl font-display font-bold text-gray-900 mb-6">
|
|
Unsere Mannschaften
|
|
</h1>
|
|
<div class="w-24 h-1 bg-primary-600 mb-8" />
|
|
|
|
<p class="text-xl text-gray-600 mb-12">
|
|
Unsere aktiven Mannschaften in der Saison 2025/26
|
|
</p>
|
|
|
|
<MannschaftenUebersicht />
|
|
|
|
<div class="mt-16">
|
|
<div class="bg-primary-50 p-8 rounded-xl border border-primary-100">
|
|
<h3 class="text-2xl font-display font-bold text-gray-900 mb-4">
|
|
Spielpläne & Ergebnisse
|
|
</h3>
|
|
<p class="text-gray-600 mb-6">
|
|
Alle aktuellen Spielpläne und Ergebnisse unserer Mannschaften finden Sie hier.
|
|
</p>
|
|
<NuxtLink
|
|
to="/mannschaften/spielplaene"
|
|
class="inline-flex items-center px-6 py-3 bg-primary-600 hover:bg-primary-700 text-white font-semibold rounded-lg transition-colors"
|
|
>
|
|
Zu den Spielplänen
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import MannschaftenUebersicht from '~/components/MannschaftenUebersicht.vue'
|
|
|
|
useHead({
|
|
title: 'Mannschaften - Harheimer TC',
|
|
})
|
|
</script>
|
|
|