Files
ProxmoxVE-Local/src/app/page.tsx
Rögl-Brunner Michel 178eee664a initial commit
2025-09-09 14:04:07 +02:00

15 lines
397 B
TypeScript

export default async function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center bg-gray-400 text-white">
<div className="container flex flex-col items-center justify-center gap-12 px-4 py-16">
<h1 className="text-5xl font-extrabold tracking-tight sm:text-[5rem]">PVE Scripts local</h1>
</div>
</main>
);
}