quotes-nextjs

My favourite quotes. (nextjs)
git clone http://git.hanabi.in/repos/quotes-nextjs.git
Log | Files | Refs | LICENSE

404.js (1143B)


      1 import CommonHead from "../components/CommonHead.js";
      2 import Footer from "../components/Footer.js";
      3 import HeadTitle from "../components/HeadTitle.js";
      4 import Header from "../components/Header.js";
      5 
      6 function _404() {
      7   return (
      8     <div className="site">
      9       <CommonHead />
     10       <HeadTitle title="404: Not found" ogtitle="404" />
     11       <Header pageTitle="404: Not found.  But that's okay." />
     12       <main id="main" className="main">
     13         <article className="entry" lang="en">
     14           <div className="entry-content">
     15             <blockquote>
     16               <em>
     17                 <p>
     18                   [The roads] moved with the land, you know? It rose, it fell,
     19                   it curved.
     20                   <br />
     21                   Cars didn't drive on it to make great time.
     22                   <br />
     23                   They drove on it to have a great time.
     24                 </p>
     25               </em>
     26             </blockquote>
     27             &mdash;<span className="author">Sally Carrera</span>,{" "}
     28             <em>Cars (2006)</em>
     29           </div>
     30         </article>
     31       </main>
     32       <Footer />
     33     </div>
     34   );
     35 }
     36 
     37 export default _404;