Initial portfolio commit (Next.js + Docker + Gitea integration)

This commit is contained in:
2026-02-25 11:38:31 +01:00
commit 5b7fe3545e
40 changed files with 8919 additions and 0 deletions

22
components/footer.tsx Normal file
View File

@@ -0,0 +1,22 @@
export default function Footer() {
return (
<footer className="border-t border-black/10 pt-8 pb-10">
<div className="flex flex-col md:flex-row md:items-center md:justify-between gap-4">
<div className="text-sm text-black/60">
© {new Date().getFullYear()} Brian De Winne
</div>
<div className="flex gap-4 text-sm">
<a className="text-black/60 hover:text-black transition" href="/lab">
Lab
</a>
<a
className="text-black/60 hover:text-black transition"
href="mailto:website+dewinnebrian@gmail.com"
>
Email
</a>
</div>
</div>
</footer>
);
}