2026-02-28 12:20:28 +01:00
|
|
|
import { GitFork, Heart } from 'lucide-react';
|
2025-11-07 11:26:19 +01:00
|
|
|
|
|
|
|
|
export default function Footer() {
|
2025-11-07 12:30:08 +01:00
|
|
|
const currentYear = new Date().getFullYear();
|
|
|
|
|
|
2025-11-07 11:26:19 +01:00
|
|
|
return (
|
2026-03-01 09:07:18 +01:00
|
|
|
<footer className="relative py-10 px-6">
|
|
|
|
|
<div className="max-w-5xl mx-auto border-t border-border/20 pt-8">
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<p className="flex items-center gap-1 text-[9px] text-muted-foreground/40 font-mono">
|
|
|
|
|
© {currentYear} Kit
|
|
|
|
|
<Heart className="w-2 h-2 text-primary/70 shrink-0 animate-pulse" fill="currentColor" />
|
|
|
|
|
<a
|
|
|
|
|
href="https://pivoine.art"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
|
className="hover:text-foreground/70 transition-colors"
|
|
|
|
|
>
|
|
|
|
|
Valknar
|
|
|
|
|
</a>
|
2026-02-27 17:46:54 +01:00
|
|
|
</p>
|
2025-11-17 21:55:10 +01:00
|
|
|
<a
|
|
|
|
|
href="https://dev.pivoine.art/valknar/kit-ui"
|
|
|
|
|
target="_blank"
|
|
|
|
|
rel="noopener noreferrer"
|
2026-02-27 17:46:54 +01:00
|
|
|
title="View source"
|
2026-03-01 09:07:18 +01:00
|
|
|
className="text-muted-foreground/30 hover:text-primary transition-colors"
|
2025-11-17 21:55:10 +01:00
|
|
|
>
|
2026-03-01 09:07:18 +01:00
|
|
|
<GitFork className="w-3.5 h-3.5" />
|
2025-11-17 21:55:10 +01:00
|
|
|
</a>
|
2026-03-01 09:07:18 +01:00
|
|
|
</div>
|
2025-11-07 11:26:19 +01:00
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
|
|
|
|
}
|