10 lines
244 B
TypeScript
10 lines
244 B
TypeScript
|
|
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>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|