Initial commit: Hello from Hermes Next.js app

This commit is contained in:
Hermes Agent
2026-07-24 17:43:48 +00:00
commit 8bf9e6614c
17 changed files with 6223 additions and 0 deletions

9
app/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
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>
);
}