peer-at-code-web/app/(legal)/privacy-policy/page.tsx
2023-09-04 13:39:18 +02:00

12 lines
384 B
TypeScript

export default function Page() {
return (
<div className="flex h-screen w-full">
<div className="m-auto">
<h1 className="text-center text-4xl font-bold">
Amuse toi avec <span className="rounded-md bg-white p-1 text-black ">Next.js</span> et{' '}
<span className="text-blue-500">Tailwindcss</span> !
</h1>
</div>
</div>
);
}