Files
FL-Akademie/components/site-footer.tsx

19 lines
544 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}