31 lines
884 B
TypeScript
31 lines
884 B
TypeScript
|
import { Link } from 'react-router-dom'
|
||
|
import { appRoutes } from 'routes'
|
||
|
|
||
|
export const NotFoundPage = () => {
|
||
|
return (
|
||
|
<div className='InnerBodyMain'>
|
||
|
<div className='ContainerMain'>
|
||
|
<div className='IBMSecMainGroup IBMSecMainGroupAlt'>
|
||
|
<div className='IBMSecMain IBMSMListWrapper'>
|
||
|
<div className='IBMSMTitleMain'>
|
||
|
<h2 className='IBMSMTitleMainHeading'>Page not found</h2>
|
||
|
</div>
|
||
|
<div>
|
||
|
<p>The page you're attempting to visit doesn't exist</p>
|
||
|
</div>
|
||
|
<div className='IBMSMAction'>
|
||
|
<Link
|
||
|
to={appRoutes.home}
|
||
|
className='btn btnMain IBMSMActionBtn'
|
||
|
type='button'
|
||
|
>
|
||
|
Go home
|
||
|
</Link>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
}
|