mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-12 16:00:27 +00:00
* feat: 统一并标准化eslint * lint: napcat.webui * lint: napcat.webui * lint: napcat.core * build: fix * lint: napcat.webui * refactor: 重构eslint * Update README.md
13 lines
413 B
TypeScript
13 lines
413 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>
|
|
);
|
|
}
|