ConceptPortal-public/rsconcept/frontend/src/features/home/NotFoundPage.tsx

12 lines
512 B
TypeScript
Raw Normal View History

import { TextURL } from '@/components/Control';
2023-07-15 17:46:19 +03:00
export function NotFoundPage() {
return (
2023-12-28 14:04:44 +03:00
<div className='flex flex-col items-center px-6 py-6'>
2024-05-07 17:58:36 +03:00
<h1 className='mb-3'>Ошибка 404 Страница не найдена</h1>
2023-12-28 14:04:44 +03:00
<p className='py-3'>Данная страница не существует или запрашиваемый объект отсутствует в базе данных</p>
<TextURL href='/' text='Вернуться на Портал' />
</div>
);
2023-07-15 17:46:19 +03:00
}