Update package-lock.json and package.json to include 'globals' dependency and improve code formatting in various components for better readability.
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 54s
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 54s
This commit is contained in:
@@ -17,37 +17,63 @@
|
||||
</h3>
|
||||
<ul class="space-y-3">
|
||||
<li class="flex items-start">
|
||||
<Check :size="24" class="text-primary-600 mr-3 flex-shrink-0 mt-0.5" />
|
||||
<Check
|
||||
:size="24"
|
||||
class="text-primary-600 mr-3 flex-shrink-0 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Keine Vorkenntnisse nötig</span>
|
||||
</li>
|
||||
<li class="flex items-start">
|
||||
<Check :size="24" class="text-primary-600 mr-3 flex-shrink-0 mt-0.5" />
|
||||
<Check
|
||||
:size="24"
|
||||
class="text-primary-600 mr-3 flex-shrink-0 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Schläger und Material werden gestellt</span>
|
||||
</li>
|
||||
<li class="flex items-start">
|
||||
<Check :size="24" class="text-primary-600 mr-3 flex-shrink-0 mt-0.5" />
|
||||
<Check
|
||||
:size="24"
|
||||
class="text-primary-600 mr-3 flex-shrink-0 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Sportkleidung und Hallenschuhe mitbringen</span>
|
||||
</li>
|
||||
<li class="flex items-start">
|
||||
<Check :size="24" class="text-primary-600 mr-3 flex-shrink-0 mt-0.5" />
|
||||
<Check
|
||||
:size="24"
|
||||
class="text-primary-600 mr-3 flex-shrink-0 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">3x kostenlos Probetraining</span>
|
||||
</li>
|
||||
<li class="flex items-start">
|
||||
<Check :size="24" class="text-primary-600 mr-3 flex-shrink-0 mt-0.5" />
|
||||
<Check
|
||||
:size="24"
|
||||
class="text-primary-600 mr-3 flex-shrink-0 mt-0.5"
|
||||
/>
|
||||
<span class="text-gray-700">Einstieg jederzeit möglich</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div v-if="config" class="bg-primary-50 p-8 rounded-xl border border-primary-100 not-prose">
|
||||
<div
|
||||
v-if="config"
|
||||
class="bg-primary-50 p-8 rounded-xl border border-primary-100 not-prose"
|
||||
>
|
||||
<h3 class="text-2xl font-display font-bold text-gray-900 mb-4">
|
||||
Anfängergruppen
|
||||
</h3>
|
||||
<div class="space-y-4 mb-6">
|
||||
<div v-for="(zeiten, gruppe) in groupedZeiten" :key="gruppe">
|
||||
<h4 class="font-semibold text-gray-900 mb-1">{{ gruppe }}</h4>
|
||||
<div
|
||||
v-for="(zeiten, gruppe) in groupedZeiten"
|
||||
:key="gruppe"
|
||||
>
|
||||
<h4 class="font-semibold text-gray-900 mb-1">
|
||||
{{ gruppe }}
|
||||
</h4>
|
||||
<div class="text-gray-600">
|
||||
<p v-for="zeit in zeiten" :key="zeit.id">
|
||||
<p
|
||||
v-for="zeit in zeiten"
|
||||
:key="zeit.id"
|
||||
>
|
||||
{{ zeit.tag }}, {{ zeit.von }} - {{ zeit.bis }} Uhr
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user