mirror of
https://github.com/tomru/rosenfeld.social.git
synced 2026-03-03 06:27:12 +01:00
33 lines
1.4 KiB
TypeScript
33 lines
1.4 KiB
TypeScript
import Image from "next/image";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
|
<main className="flex min-h-screen w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
|
|
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
|
|
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
|
|
Go away! Do it! Now!
|
|
</h1>
|
|
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
|
|
I'm not kidding. Go. Please go before it's too late! Mabye to{" "}
|
|
<a
|
|
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
>
|
|
here
|
|
</a>{" "}
|
|
or{" "}
|
|
<a
|
|
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
>
|
|
here
|
|
</a>{" "}
|
|
?
|
|
</p>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|