portfolio/src/components/footer.tsx

10 lines
244 B
TypeScript
Raw Normal View History

2026-06-19 22:13:18 +00:00
export default function Footer() {
return (
<>
<div className="w-full border-t border-t-gray-500 bg-black py-5 pl-4">
<h1 className="text-gray-600 font-[Bitcount] text-2xl ">periodicbrake.fr</h1>
</div>
</>
);
}