Files
NapCatQQ/napcat.webui/src/components/under_construction.tsx
时瑾 06f6a542f5 refactor: 优化eslint配置,提升代码质量 (#1341)
* feat: 统一并标准化eslint

* lint: napcat.webui

* lint: napcat.webui

* lint: napcat.core

* build: fix

* lint: napcat.webui

* refactor: 重构eslint

* Update README.md
2025-11-03 16:30:45 +08:00

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