ConceptPortal-public/rsconcept/frontend/src/features/home/NotFoundPage.tsx
Ivan 74473f4cb5
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
R: Remove all default exports
2025-02-19 23:30:35 +03:00

12 lines
512 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/Control';
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>
);
}