portfolio/src/app/legal/page.tsx

18 lines
640 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default function Legal() {
return (
<div className="space-y-4 flex flex-col w-3/5 h-3/5 p-15 bg-gray-700 border-gray-600 border rounded-xl">
<h1 className="font-[Bitcount] text-4xl text-gray-50">Data policy</h1>
<p className="ml-2 text-gray-50 font-[Bitcount] text-xl">
Where does your data go? Idk fam tbh i just know google got smth to do
with the fonts{" "}
</p>
<h1 className="font-[Bitcount] text-4xl text-gray-50">
EULA
</h1>
<p className="ml-2 text-gray-50 font-[Bitcount] text-xl">
gng who said i was a product 🫩
</p>
</div>
);
}