mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-11 15:30:25 +00:00
13 lines
411 B
TypeScript
13 lines
411 B
TypeScript
export default function UnderConstruction() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center h-full pt-4">
|
|
<div className="flex flex-col items-center justify-center space-y-4">
|
|
<div className="text-6xl font-bold text-gray-500">🚧</div>
|
|
<div className="text-2xl font-bold text-gray-500">
|
|
Under Construction
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|