Initial portfolio commit (Next.js + Docker + Gitea integration)
This commit is contained in:
22
components/footer.tsx
Normal file
22
components/footer.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user