Files
harheimertc/pages/mannschaften/herren.vue
Torsten Schulz (local) 3586704cce
Some checks failed
Code Analysis and Production Deploy / analyze (push) Failing after 10m29s
Code Analysis and Production Deploy / deploy-production (push) Has been skipped
Code Analysis and Production Deploy / deploy-test (push) Has been skipped
Update file permissions for multiple server and test files to executable mode
2026-07-15 08:45:12 +02:00

56 lines
1.5 KiB
Vue
Executable File

<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">
Herrenmannschaften
</h1>
<div class="w-24 h-1 bg-primary-600 mb-8" />
<div class="space-y-8">
<div class="bg-white p-8 rounded-xl shadow-lg">
<h3 class="text-2xl font-display font-bold text-gray-900 mb-4">
1. Herren
</h3>
<p class="text-gray-600 mb-4">
Liga: Bezirksoberliga
</p>
<p class="text-gray-600">
Mannschaftsführer: Name folgt
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<h3 class="text-2xl font-display font-bold text-gray-900 mb-4">
2. Herren
</h3>
<p class="text-gray-600 mb-4">
Liga: Bezirksliga
</p>
<p class="text-gray-600">
Mannschaftsführer: Name folgt
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<h3 class="text-2xl font-display font-bold text-gray-900 mb-4">
3. Herren
</h3>
<p class="text-gray-600 mb-4">
Liga: Kreisliga
</p>
<p class="text-gray-600">
Mannschaftsführer: Name folgt
</p>
</div>
</div>
</div>
</div>
</template>
<script setup>
useHead({
title: 'Herrenmannschaften - Harheimer TC',
})
</script>