This commit is contained in:
2026-08-03 10:27:15 +02:00
parent d8aba6925f
commit 8cf2ce1b21
10 changed files with 386 additions and 7 deletions

View File

@@ -17,6 +17,12 @@ export default function Footer() {
Gebaut für alle, die sich (manchmal) nicht entscheiden können.
</p>
<nav aria-label="Rechtliches und Erweiterungen" className="flex flex-wrap items-center justify-center gap-4">
<Link href="/ratgeber" className="transition-colors hover:text-[#0d7a57]">
Ratgeber
</Link>
<Link href="/ueber-uns" className="transition-colors hover:text-[#0d7a57]">
Über uns
</Link>
<span className="inline-flex items-center gap-1.5 text-ink-soft">
Chrome Extension
<span className="rounded-full border border-[#0d7a57]/20 bg-[#e6f7f0] px-2 py-0.5 text-[10px] font-semibold uppercase tracking-wider text-[#0d7a57]">Soon</span>

View File

@@ -107,6 +107,7 @@ export default function Nav() {
)}
</div>
<Link href="/developer" className="rounded-full px-4 py-2 text-sm font-medium text-ink-soft transition-colors duration-200 hover:bg-[#e6f7f0] hover:text-[#0d7a57]">Extensions &amp; API</Link>
<Link href="/ratgeber" className="rounded-full px-4 py-2 text-sm font-medium text-ink-soft transition-colors duration-200 hover:bg-[#e6f7f0] hover:text-[#0d7a57]">Ratgeber</Link>
<Link href="/#features" className="rounded-full px-4 py-2 text-sm font-medium text-ink-soft transition-colors duration-200 hover:bg-[#e6f7f0] hover:text-[#0d7a57]">Features</Link>
{soundButton}
</div>
@@ -127,6 +128,7 @@ export default function Nav() {
{TOOLS.map((tool) => <Link key={tool.href} href={tool.href} onClick={closeMenus} className="flex items-center justify-between rounded-2xl px-4 py-3 hover:bg-[#e6f7f0]"><span><span className="block font-semibold text-ink">{tool.label}</span><span className="text-xs text-ink-soft">{tool.hint}</span></span><span className="text-[#0d7a57]"></span></Link>)}
</div>
<Link href="/developer" onClick={closeMenus} className="mt-3 block rounded-2xl border border-line bg-[#e6f7f0] px-4 py-3 font-semibold text-[#0d7a57]">Extensions &amp; Developer Suite</Link>
<Link href="/ratgeber" onClick={closeMenus} className="mt-2 block rounded-2xl border border-line px-4 py-3 font-semibold text-ink">Ratgeber</Link>
<Link href="/#features" onClick={closeMenus} className="mt-2 block rounded-2xl border border-line px-4 py-3 font-semibold text-ink">Features</Link>
</div>
</div>