Files
portfolio/components/footer.tsx

23 lines
702 B
TypeScript

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>
);
}