yiekheng 9bd75381a7 Add hello world landing page and Docker deployment config
Simple landing page for initial Portainer GitOps deployment.
Includes Dockerfile, docker-compose.yml with pull_policy: build,
and project documentation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-24 22:37:08 +08:00

15 lines
434 B
TypeScript

export default function Home() {
return (
<div className="flex min-h-screen items-center justify-center bg-zinc-50 dark:bg-black">
<div className="text-center">
<h1 className="text-4xl font-bold text-black dark:text-white">
SunnyMH Manga
</h1>
<p className="mt-4 text-lg text-zinc-600 dark:text-zinc-400">
Hello World Coming Soon
</p>
</div>
</div>
);
}