2024-11-15 19:44:26 +03:00

16 lines
548 B
TypeScript

export default function Home() {
return (
<main className="flex min-h-screen flex-col p-6">
<div className="mt-4 flex grow flex-col gap-4 md:flex-row">
<div className="flex flex-col justify-center gap-6 rounded-lg bg-gray-50 px-6 py-10 md:w-2/5 md:px-20">
<div />
<p className="text-xl text-gray-800 md:text-3xl md:leading-normal">
<strong>Welcome to Acme.</strong> This is the example for the ,
brought to you by Vercel.
</p>
</div>
</div>
</main>
);
}