10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
|
|
export default function Home() {
|
||
|
|
return (
|
||
|
|
<main className="flex min-h-screen flex-col items-center justify-center p-8">
|
||
|
|
<p className="text-lg text-gray-600 dark:text-gray-400">
|
||
|
|
Please wait while we're working on your request.
|
||
|
|
</p>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|