portfolio/src/components/footer.tsx

19 lines
764 B
TypeScript
Raw Normal View History

2026-06-20 07:39:05 +00:00
import Link from "next/link";
2026-06-19 22:13:18 +00:00
export default function Footer() {
return (
<>
2026-06-20 07:39:05 +00:00
<div className="w-full border-t border-t-gray-500 bg-black py-5 px-4">
<h1 className="text-gray-600 font-[Bitcount] text-2xl w-full mb-2.5 border-b border-b-gray-600">periodicbrake.fr</h1>
<div className="flex flex-row ml-4 space-x-1.5 font-[Bitcount] text-gray-500 text-xl">
<nav className="flex flex-col space-y-1">
<Link href="/portfolio" className="hover:text-gray-300"><ul>portfolio</ul></Link>
<Link href="/contact" className="hover:text-gray-300"><ul>contact</ul></Link>
<Link href="/legal" className="hover:text-gray-300"><ul>legal</ul></Link>
</nav>
</div>
2026-06-19 22:13:18 +00:00
</div>
</>
);
}