10 lines
287 B
TypeScript
10 lines
287 B
TypeScript
export default function Home() {
|
|
return (
|
|
<main className="flex min-h-screen items-center justify-center bg-zinc-50 dark:bg-zinc-950">
|
|
<h1 className="text-4xl font-bold tracking-tight text-zinc-900 dark:text-zinc-50">
|
|
Hello from Hermes
|
|
</h1>
|
|
</main>
|
|
);
|
|
}
|