Initial commit: FL-Akademie LMS mit Docker, Admin, Portal und Dokumentation.

Made-with: Cursor
This commit is contained in:
lo
2026-04-13 23:17:07 +02:00
commit d3367f0046
66 changed files with 3641 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import Link from "next/link";
export function SiteFooter() {
return (
<footer className="site-footer">
<div className="container footer-inner">
<p className="muted">Entwicklungsumgebung Akademie LMS (Tutor-Ersatz).</p>
<nav className="footer-nav">
<Link href="/kurse">Kurse</Link>
<span className="sep">·</span>
<a href="https://akademie.fahrlaessig.com/" target="_blank" rel="noreferrer">
Live-Akademie
</a>
</nav>
</div>
</footer>
);
}