peer-at-code-web/app/page.tsx
2023-02-04 14:20:03 +01:00

12 lines
384 B
TypeScript

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