Initial commit

This commit is contained in:
Janpeter Visser 2026-04-14 21:39:50 +02:00
commit dc66b66d94
22 changed files with 7556 additions and 0 deletions

15
components/footer.tsx Normal file
View file

@ -0,0 +1,15 @@
export function Footer() {
return (
<footer
className="flex justify-between items-center flex-wrap gap-4 text-[13px]"
style={{
padding: "40px clamp(20px, 6vw, 80px)",
borderTop: "1px solid rgba(255,255,255,0.06)",
color: "rgba(255,255,255,0.25)",
}}
>
<span>&copy; {new Date().getFullYear()} Janpeter Visser</span>
<span>jp-visser.nl</span>
</footer>
);
}