26 lines
1 KiB
TypeScript
26 lines
1 KiB
TypeScript
import Image from "next/image";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center bg-zinc-200 font-sans dark:bg-slate-800">
|
|
<main className="flex h-full w-full max-w-3xl rounded-4xl flex-col items-center py-32 px-16 bg-gray-400 dark:bg-slate-900 sm:items-start">
|
|
<Image
|
|
className="dark:invert"
|
|
src="/next.svg"
|
|
alt="Next.js logo"
|
|
width={100}
|
|
height={20}
|
|
priority
|
|
/>
|
|
<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">
|
|
Welcome to the Dagemark Server
|
|
</h1>
|
|
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400 italic">
|
|
Design In Progress, current layout and theme may change, have a good day :D
|
|
</p>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|