This repository has been archived on 2026-02-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreakPilot Dev 19855efacc
Some checks failed
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
ci/woodpecker/manual/build-ci-image Pipeline was successful
ci/woodpecker/manual/main Pipeline failed
feat: BreakPilot PWA - Full codebase (clean push without large binaries)
All services: admin-v2, studio-v2, website, ai-compliance-sdk,
consent-service, klausur-service, voice-service, and infrastructure.
Large PDFs and compiled binaries excluded via .gitignore.
2026-02-11 13:25:58 +01:00

80 lines
2.8 KiB
TypeScript

import Link from 'next/link'
export default function Footer() {
return (
<footer className="bg-slate-900 text-slate-400 py-12 px-4 sm:px-6 lg:px-8">
<div className="max-w-7xl mx-auto">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
{/* Brand */}
<div className="col-span-1 md:col-span-2">
<div className="flex items-center space-x-2">
<div className="w-8 h-8 bg-gradient-to-br from-primary-500 to-accent-500 rounded-lg flex items-center justify-center">
<span className="text-white font-bold text-lg">B</span>
</div>
<span className="font-semibold text-xl text-white">BreakPilot</span>
</div>
<p className="mt-4 text-sm max-w-md">
KI-gestuetzte Korrekturhilfe fuer Lehrkraefte.
Sparen Sie Zeit und konzentrieren Sie sich auf das Wesentliche: Ihre Schueler.
</p>
</div>
{/* Links */}
<div>
<h3 className="text-white font-medium mb-4">Produkt</h3>
<ul className="space-y-2 text-sm">
<li>
<Link href="#pricing" className="hover:text-white transition-colors">
Preise
</Link>
</li>
<li>
<Link href="#features" className="hover:text-white transition-colors">
Funktionen
</Link>
</li>
<li>
<Link href="/faq" className="hover:text-white transition-colors">
FAQ
</Link>
</li>
</ul>
</div>
{/* Legal */}
<div>
<h3 className="text-white font-medium mb-4">Rechtliches</h3>
<ul className="space-y-2 text-sm">
<li>
<Link href="/impressum" className="hover:text-white transition-colors">
Impressum
</Link>
</li>
<li>
<Link href="/datenschutz" className="hover:text-white transition-colors">
Datenschutz
</Link>
</li>
<li>
<Link href="/agb" className="hover:text-white transition-colors">
AGB
</Link>
</li>
</ul>
</div>
</div>
{/* Bottom Bar */}
<div className="mt-12 pt-8 border-t border-slate-800 flex flex-col md:flex-row justify-between items-center">
<p className="text-sm">
&copy; {new Date().getFullYear()} BreakPilot. Alle Rechte vorbehalten.
</p>
<p className="text-sm mt-2 md:mt-0">
Made with care in Germany
</p>
</div>
</div>
</footer>
)
}