ConceptPortal-public/rsconcept/frontend/src/pages/NotFoundPage.tsx
2024-05-07 17:58:36 +03:00

14 lines
541 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import TextURL from '@/components/ui/TextURL';
export function NotFoundPage() {
return (
<div className='flex flex-col items-center px-6 py-6'>
<h1 className='mb-3'>Ошибка 404 Страница не найдена</h1>
<p className='py-3'>Данная страница не существует или запрашиваемый объект отсутствует в базе данных</p>
<TextURL href='/' text='Вернуться на Портал' />
</div>
);
}
export default NotFoundPage;