All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 39s
CI / test-python-voice (push) Successful in 37s
CI / test-bqas (push) Successful in 37s
Neue statische Website fuer Kinder (6-12 Jahre) mit 8 Holzprojekten, SVG-Illustrationen, Sicherheitshinweisen und kindgerechtem Design. Next.js 15 + Tailwind + Framer Motion. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
577 B
TypeScript
18 lines
577 B
TypeScript
import { Heart } from 'lucide-react'
|
|
import { Logo } from './Logo'
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className="bg-white border-t border-primary/10 mt-16">
|
|
<div className="max-w-6xl mx-auto px-4 py-8">
|
|
<div className="flex flex-col sm:flex-row items-center justify-between gap-4">
|
|
<Logo size={32} />
|
|
<p className="text-sm text-dark/50 flex items-center gap-1">
|
|
Gemacht mit <Heart className="w-4 h-4 text-red-400 fill-red-400" /> fuer junge Holzwerker
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|