Add developer ecosystem page and footer links

This commit is contained in:
2026-08-02 00:11:29 +02:00
parent 977fcdccf3
commit 49c85288a1
4 changed files with 378 additions and 9 deletions

View File

@@ -123,10 +123,22 @@ export function Footer({ variant = 'marketing', t }: FooterProps) {
<li><Link href="/terms" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>{translations.terms_of_service}</Link></li>
<li><Link href="/contact" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>Contact</Link></li>
<li><Link href="/qr-code-erstellen" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>QR Code Erstellen (DE)</Link></li>
<li><Link href="/tools/barcode-generator" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>Barcode Generator</Link></li>
</ul>
</div>
<div>
<h3 className={`font-semibold mb-4 ${isDashboard ? 'text-gray-900' : ''}`}>Developer Suite</h3>
<ul className={`space-y-2 ${isDashboard ? 'text-gray-500' : 'text-gray-400'}`}>
<li><Link href="/developers" className={isDashboard ? 'hover:text-primary-600 font-semibold text-primary-400' : 'hover:text-white font-semibold text-primary-400'}>Developer Hub </Link></li>
<li><a href="https://open-vsx.org/extension/qrmaster/qrmaster-generator" target="_blank" rel="noopener noreferrer" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>VS Code / Cursor Extension</a></li>
<li><a href="https://github.com/marketplace/actions/qr-master-code-generator" target="_blank" rel="noopener noreferrer" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>GitHub Action Marketplace</a></li>
<li><a href="https://www.npmjs.com/package/qrmaster-cli" target="_blank" rel="noopener noreferrer" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>npm Package (Node.js)</a></li>
<li><a href="https://pypi.org/project/qrmaster/" target="_blank" rel="noopener noreferrer" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>PyPI Package (Python)</a></li>
<li><a href="https://github.com/knuthtimo-lab/qrmaster-cli" target="_blank" rel="noopener noreferrer" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>GitHub Repository</a></li>
<li><a href="https://chromewebstore.google.com" target="_blank" rel="noopener noreferrer" className={isDashboard ? 'hover:text-primary-600' : 'hover:text-white'}>Chrome Web Store Extension (Soon)</a></li>
</ul>
</div>
</div>
<div className={`border-t mt-8 pt-8 flex items-center justify-between ${isDashboard ? 'border-gray-200 text-gray-500' : 'border-gray-800 text-gray-400'}`}>