discord-multipurpose-bot/dashboard/components/coming-soon.tsx

10 lines
257 B
TypeScript
Raw Normal View History

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>
);
}