juntekim.com/juntekim_frontend/app/page.tsx
2025-12-07 10:01:18 +00:00

11 lines
278 B
TypeScript

import Image from "next/image";
export default function Home() {
return (
<div className="flex h-screen items-center justify-center">
<h1 className="text-3xl font-bold text-center">
Impatient with actions, Patient with results
</h1>
</div>
);
}