10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
export default function Home() {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-between p-24">
|
|
<main className="flex flex-col items-center justify-center">
|
|
<h1 className="text-4xl font-bold">Work in Progress</h1>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|