feat: Add base project structure with API and web components
This commit is contained in:
17
web/src/views/NotFound/index.tsx
Normal file
17
web/src/views/NotFound/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import notFoundImg from '@/assets/images/empty/404.svg';
|
||||
import Empty from '@/components/Empty';
|
||||
|
||||
const NotFound = () => {
|
||||
const { t } = useTranslation();
|
||||
|
||||
return (
|
||||
<Empty
|
||||
url={notFoundImg}
|
||||
title={t('empty.notFound')}
|
||||
subTitle={t('empty.notFoundDesc')}
|
||||
className="rb:h-[calc(100vh-84px)]"
|
||||
/>
|
||||
)
|
||||
}
|
||||
export default NotFound;
|
||||
Reference in New Issue
Block a user