feat(website): Add Foerderantrag pages and website management section

Add public Foerderantrag (funding application) pages to the website.
Add website management section to admin-v2 with content and status APIs.
Extend Header, LandingContent, and i18n with new navigation entries.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
BreakPilot Dev
2026-02-10 23:26:31 +01:00
parent e636b8cef8
commit 81fb1a4499
11 changed files with 3328 additions and 0 deletions

View File

@@ -29,6 +29,9 @@ export default function Header() {
<Link href="/#features" className="text-slate-600 hover:text-slate-900 transition-colors">
{t('nav_features')}
</Link>
<Link href="/foerderantrag" className="text-slate-600 hover:text-slate-900 transition-colors">
{t('nav_foerderantrag')}
</Link>
<Link href="/faq" className="text-slate-600 hover:text-slate-900 transition-colors">
{t('nav_faq')}
</Link>
@@ -77,6 +80,9 @@ export default function Header() {
<Link href="/#features" className="text-slate-600 hover:text-slate-900">
{t('nav_features')}
</Link>
<Link href="/foerderantrag" className="text-slate-600 hover:text-slate-900">
{t('nav_foerderantrag')}
</Link>
<Link href="/faq" className="text-slate-600 hover:text-slate-900">
{t('nav_faq')}
</Link>