11 lines
278 B
TypeScript
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>
|
|
);
|
|
}
|