quotes

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

about.js (756B)


      1 import React from 'react';
      2 import Layout from '../components/layout';
      3 import SEO from '../components/seo';
      4 
      5 function About() {
      6   return (
      7     <Layout heading="About" slug="about">
      8       <SEO title="About" />
      9       <article className="entry" lang="en">
     10         <div className="entry-content">
     11           <p>
     12             Hi, I’m Agastya. I go by the name <em>acagastya</em> across the
     13             internet.
     14           </p>
     15           <p>
     16             I remember vividly how deeply quotes would affect me during my
     17             teenage life. As the life priorities changed, I couldn't remember
     18             most of it, but it is awe-inspiring for me. And here is my pick!
     19           </p>
     20         </div>
     21       </article>
     22     </Layout>
     23   );
     24 }
     25 
     26 export default About;