404.js (827B)
1 import React from 'react'; 2 3 import Layout from '../components/layout'; 4 import SEO from '../components/seo'; 5 6 function NotFoundPage() { 7 return ( 8 <Layout heading="404: Not found. Ok"> 9 <SEO title="404: Not found" /> 10 <article class="entry" lang="en"> 11 <div className="entry-content"> 12 <blockquote> 13 <em> 14 <p> 15 [The roads] moved with the land, you know? It rose, it fell, it 16 curved. 17 <br /> 18 Cars didn't drive on it to make great time. 19 <br /> 20 They drove on it to have a great time. 21 </p> 22 </em> 23 </blockquote> 24 — Sally Carrera, <em>Cars (2006)</em> 25 </div> 26 </article> 27 </Layout> 28 ); 29 } 30 31 export default NotFoundPage;