mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-22 16:55:55 +00:00
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
export default function ComingSoon() {
|
|
return (
|
|
<div className="flex items-center justify-center min-h-screen bg-gray-900">
|
|
<h1 className="text-4xl font-bold text-center text-white sm:text-6xl">
|
|
Coming Soon
|
|
</h1>
|
|
</div>
|
|
);
|
|
}
|