wordeck/apps/landing/src/components/Footer.astro
Till JS 8a56d0dcff feat(landing): Astro-Landingpage für Cardecky
Neue statische Astro 5-App in apps/landing/ (Port 4380).
Sektionen: Nav, Hero, Kartentypen-Grid (6 Typen), How-it-works,
Features, mana-e.V.-Pitch, CTA, Footer.

Stack: Astro 5 + Tailwind 3, kein MDX (overkill für MVP), keine
externen Abhängigkeiten. Forest-grüne Farbpalette passend zum App-
Theme, Serif-Headings im mana-e.V.-Stil.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-11 18:40:51 +02:00

40 lines
1.9 KiB
Text

---
const year = new Date().getFullYear();
---
<footer class="bg-ink py-12 text-white/60">
<div class="mx-auto max-w-content px-6">
<div class="grid gap-8 sm:grid-cols-3">
<div>
<p class="font-serif text-base font-semibold text-white">Cardecky</p>
<p class="mt-2 text-sm leading-relaxed">
Spaced-Repetition-App des mana e.V.<br/>
Freie Software für freie Menschen.
</p>
</div>
<div>
<p class="text-xs font-semibold uppercase tracking-widest text-white/40">App</p>
<ul class="mt-3 space-y-2 text-sm">
<li><a href="https://cardecky.mana.how" class="hover:text-white transition-colors">Zur App</a></li>
<li><a href="https://cardecky.mana.how/decks" class="hover:text-white transition-colors">Bibliothek</a></li>
<li><a href="https://cardecky.mana.how/study" class="hover:text-white transition-colors">Lernen</a></li>
</ul>
</div>
<div>
<p class="text-xs font-semibold uppercase tracking-widest text-white/40">Verein</p>
<ul class="mt-3 space-y-2 text-sm">
<li><a href="https://mana-ev.ch" class="hover:text-white transition-colors" target="_blank" rel="noopener">mana e.V.</a></li>
<li><a href="https://mana-ev.ch#mitglied" class="hover:text-white transition-colors" target="_blank" rel="noopener">Mitglied werden</a></li>
<li><a href="https://git.mana.how/mana/cards" class="hover:text-white transition-colors" target="_blank" rel="noopener">Quellcode</a></li>
<li><a href="https://mana-ev.ch/datenschutz" class="hover:text-white transition-colors" target="_blank" rel="noopener">Datenschutz</a></li>
</ul>
</div>
</div>
<div class="mt-10 border-t border-white/10 pt-6 text-xs">
© {year} mana e.V. · Cardecky ist freie Software (AGPL-3.0) ·
<a href="https://mana-ev.ch" class="hover:text-white transition-colors">mana-ev.ch</a>
</div>
</div>
</footer>