feat: add Mitgliedschaft section and update Verein structure
Introduced a new Mitgliedschaft section with detailed information on membership requirements, benefits, and fees. Reorganized Verein-related file structure for better clarity and added supporting styles in `input.css`. Extended blueprints to support the new section and updated snippets for dynamic content rendering.
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<h2>Was kostet die Mitgliedschaft?</h2>
|
||||
|
||||
<p>Die Mitgliedsbeiträge wurden im Rahmen der Jahreshauptversammlung im März 2002 gemäß Ergänzungsbeschluss zu "§6 Beiträge" der Satzung der Schachfreunde Bad Steben wie folgt festgelegt:</p>
|
||||
<div class="mt-8 p-10 sm:mt-10 space-y-4 sm:space-y-0 sm:grid sm:grid-cols-2 sm:gap-6 lg:max-w-3xl lg:mx-auto text-center">
|
||||
<div class="border border-b-sf_blau-500 bg-sf_blau-50 rounded-lg shadow-lg">
|
||||
<div class="p-6">
|
||||
<h2 class="text-2l leading-6 font-bold text-sf_blau-950">Erwachsene</h2>
|
||||
<p class="mt-4 text-sm h-10 text-neutral-500">Für volljährige Mitglieder</p>
|
||||
<hr class="mt-8">
|
||||
<p class="mt-4 flex flex-col space-y-2">
|
||||
<span class="flex flex-row space-x-2 items-center justify-center">
|
||||
<span class="text-5xl font-extrabold text-sf_gelb-700">€ 20,00</span>
|
||||
<span class="text-xs font-medium text-neutral-500">pro Jahr</span>
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="border border-b-sf_blau-500 bg-sf_blau-50 rounded-lg shadow-lg">
|
||||
<div class="p-6">
|
||||
<h2 class="text-2l leading-6 font-bold text-sf_blau-950">Jugendliche</h2>
|
||||
<p class="mt-4 text-sm h-10 text-neutral-500">Für Mitglieder unter 18 Jahren</p>
|
||||
<hr class="mt-8">
|
||||
<p class="mt-4 flex flex-col space-y-2">
|
||||
<span class="flex flex-row space-x-2 items-center justify-center">
|
||||
<span class="text-5xl font-extrabold text-sf_gelb-700">€ 12,00</span>
|
||||
<span class="text-xs font-medium text-neutral-500">pro Jahr</span>
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user