()
| 2 | import Template from '../Template'; |
| 3 | |
| 4 | function NotFound() { |
| 5 | return ( |
| 6 | <Template> |
| 7 | <div |
| 8 | className='flex flex-col items-center my-8 p-4 rounded-xl |
| 9 | shadow-lg w-max justify-center bg-gray-200 mx-auto' |
| 10 | > |
| 11 | <div className='text-5xl m-4'>Page not found</div> |
| 12 | <div className='text-2xl m-3'> |
| 13 | That URL doesn't exist – return |
| 14 | <Link to='/' className='inline font-medium'> |
| 15 | home |
| 16 | </Link> |
| 17 | </div> |
| 18 | </div> |
| 19 | <div className='flex-grow' /> |
| 20 | </Template> |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | export default NotFound; |
nothing calls this directly
no outgoing calls
no test coverage detected