MCPcopy Create free account
hub / github.com/Free-APIs/Free-APIs.github.io / NotFound

Function NotFound

src/pages/NotFound/index.js:4–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import Template from '../Template';
3
4function 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 &nbsp;home
16 </Link>
17 </div>
18 </div>
19 <div className='flex-grow' />
20 </Template>
21 );
22}
23
24export default NotFound;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected