Files
gregorlohaus.com/src/app/page.tsx
Gregor Lohaus 90df8a3f0c basic styling
2025-04-07 17:52:50 +02:00

12 lines
225 B
TypeScript

import Link from "next/link";
export default function HomePage() {
return (
<main className="flex min-h-screen flex-col items-center justify-center bg-black text-white">
<div>
Hello World
</div>
</main>
);
}