mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
13 lines
521 B
TypeScript
13 lines
521 B
TypeScript
import TextURL from '../components/Common/TextURL';
|
||
|
||
export function NotFoundPage() {
|
||
return (
|
||
<div className='px-6 py-2'>
|
||
<h1 className='text-xl font-semibold'>Ошибка 404 - Страница не найдена</h1>
|
||
<p className='mt-2'>Данная страница не существует или запрашиваемый объект отсутствует в базе данных</p>
|
||
<TextURL href='/' text='Вернуться на Портал' />
|
||
</div>);
|
||
}
|
||
|
||
export default NotFoundPage;
|