quotes-nextjs

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

about.js (1002B)


      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 About() {
      7   return (
      8     <div className="site">
      9       <CommonHead />
     10       <HeadTitle title="About" ogtitle="About" />
     11       <Header pageTitle="About" />
     12       <main id="main" className="main">
     13         <article className="entry" lang="en">
     14           <div className="entry-content">
     15             <p>
     16               Hi, I'm Agastya. I go by the name <em>acagastya</em> across the
     17               internet.
     18             </p>
     19             <p>
     20               I remember vividly how deeply quotes would affect me during my
     21               teenage life. As the life priorities changed, I couldn't remember
     22               most of it, but it is awe-inspiring for me. And here is my pick!
     23             </p>
     24           </div>
     25         </article>
     26       </main>
     27       <Footer />
     28     </div>
     29   );
     30 }
     31 
     32 export default About;