ConceptPortal-public/rsconcept/frontend/src/pages/NotFoundPage.tsx

13 lines
521 B
TypeScript
Raw Normal View History

2023-11-27 12:11:39 +03:00
import TextURL from '../components/Common/TextURL';
2023-07-15 17:46:19 +03:00
export function NotFoundPage() {
return (
2023-12-08 00:33:47 +03:00
<div className='px-6 py-2'>
<h1 className='text-xl font-semibold'>Ошибка 404 - Страница не найдена</h1>
<p className='mt-2'>Данная страница не существует или запрашиваемый объект отсутствует в базе данных</p>
<TextURL href='/' text='Вернуться на Портал' />
</div>);
2023-07-15 17:46:19 +03:00
}
2023-07-25 20:27:29 +03:00
export default NotFoundPage;