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

14 lines
548 B
TypeScript
Raw Normal View History

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