NotFoundPage.js (857B)
1 // @flow 2 import React from 'react'; 3 4 import {Link, Text} from '../Components'; 5 6 const NotFoundPage = () => { 7 return ( 8 <React.Fragment> 9 <Text> 10 <br />I regret to tell that you may have entered the 11 </Text> 12 <Text as="h2">404 page</Text> 13 <Text> 14 Website will typically generate a{' '} 15 <Text as="span" variant="red"> 16 "404 Not Found" 17 </Text>{' '} 18 web page when a user attempts to follow a broken or dead link; hence the 19 404 error is one of the most recognizable errors encountered on the 20 World Wide Web. [ 21 <Link to="https://en.wikipedia.org/wiki/HTTP_404">1</Link>] 22 <br /> 23 <br /> 24 <br /> 25 get back to <Link to="/">safety ยป</Link> 26 </Text> 27 </React.Fragment> 28 ); 29 }; 30 31 export default React.memo<{}>(NotFoundPage);