{"version":3,"file":"component---src-pages-index-tsx-dffa5b1c390f45f094bc.js","mappings":"0KAgDA,UAzCa,SAACA,GACZ,MAKIA,EALJ,KACmBC,EADnB,qCAGoBC,EAHpB,QAG2BC,EAH3B,cAOA,OACE,yBACE,qBAAKD,MAAL,EAAmBC,YAAaA,IAChC,sBAAIC,UAAU,iCAFhB,qBAGE,0BACGH,EAAA,KAAU,SAAAI,GACT,IAAMH,EAAQG,EAAAA,YAAd,MAEA,OACE,sBAAIC,IAAKD,EAAKE,MACZ,sBAAMC,GAAIH,EAAKE,MACb,+BACE,8BACE,sBAAIH,UAAU,YADhB,GAEE,yBAAOA,UAAU,sBACdC,EAAAA,YADH,UAC4BA,EAD5B,WAHJ,qBAOE,+BACE,qBAAGD,UAAU,0CACVC,EAAAA,YAZb","sources":["webpack://pesonal-website/./src/pages/index.tsx"],"sourcesContent":["import * as React from \"react\";\nimport { Link, graphql } from \"gatsby\";\nimport type { PageProps } from \"gatsby\";\n\nimport Layout from \"../components/Layout\";\nimport Seo from \"../components/SEO\";\n\nconst Home = (props: PageProps) => {\n const {\n allMdx: { nodes: posts },\n site: {\n siteMetadata: { title, description },\n },\n } = props.data;\n\n return (\n \n \n

Latest blog posts

\n
    \n {posts.map(post => {\n const title = post.frontmatter.title;\n\n return (\n
  1. \n \n
    \n
    \n

    {title}

    \n \n {post.frontmatter.date}, {post.timeToRead} minutes to read\n \n
    \n
    \n

    \n {post.frontmatter.excerpt}\n

    \n
    \n
    \n \n
  2. \n );\n })}\n
\n
\n );\n};\n\nexport default Home;\n\nexport const pageQuery = graphql`\n query {\n allMdx(sort: { fields: frontmatter___date, order: ASC }) {\n nodes {\n slug\n frontmatter {\n date(formatString: \"DD/MM/YYYY\")\n title\n excerpt\n }\n timeToRead\n }\n }\n site {\n siteMetadata {\n title\n description\n }\n }\n }\n`;\n"],"names":["props","posts","title","description","className","post","key","slug","to"],"sourceRoot":""}