{"version":3,"file":"component---src-pages-projects-js-064c3f17992921bea36c.js","mappings":"8KAsEA,UAjEqB,WACnB,IAAMA,GAAOC,EAAAA,EAAAA,gBAAe,cA6B5B,OACE,gBAAC,IAAD,KACE,gBAAC,IAAD,CAAKC,MAAM,aACVF,EAAKG,QAAQC,MAAMC,KAAI,SAACC,GAAD,OACtB,2BACEC,MAAO,CAAEC,aAAc,QACvBC,IAAKH,EAAKI,KAAKC,oBAAoBC,IAEnC,0BAAKN,EAAKI,KAAKC,oBAAoBE,YAAYX,OAC/C,yBACGI,EAAKI,KAAKC,oBAAoBE,YAAYC,UAD7C,KAC0D,IACvDR,EAAKI,KAAKC,oBAAoBE,YAAYE,SAE7C,yCACgBT,EAAKI,KAAKC,oBAAoBE,YAAYG,aAE1D,yBACE,qBAAGC,KAAMX,EAAKI,KAAKC,oBAAoBE,YAAYK,KAAnD,OAAgE,IADlE,MAGE,qBAAGD,KAAMX,EAAKI,KAAKC,oBAAoBE,YAAYM,QAAnD,WAIF,uBACEC,UAAU,kBACVC,wBAAyB,CACvBC,OAAQhB,EAAKI,KAAKC,oBAAoBY","sources":["webpack://portfolio-website/./src/pages/projects.js"],"sourcesContent":["import React from 'react'\nimport Layout from '../components/layout'\nimport Seo from '../components/seo'\nimport { useStaticQuery, graphql } from 'gatsby'\n\nconst ProjectsPage = () => {\n const data = useStaticQuery(graphql`\n query ProjectsQuery {\n allFile(\n filter: { absolutePath: { regex: \"/(/markdown-projects).*.md$/\" } }\n sort: {\n fields: [childMarkdownRemark___frontmatter___startDate]\n order: [DESC]\n }\n ) {\n edges {\n node {\n childMarkdownRemark {\n id\n html\n frontmatter {\n title\n startDate(formatString: \"MMMM DD, YYYY\")\n endDate(formatString: \"MMMM DD, YYYY\")\n description\n url\n source\n }\n }\n }\n }\n }\n }\n `)\n\n return (\n \n \n {data.allFile.edges.map((edge) => (\n \n

{edge.node.childMarkdownRemark.frontmatter.title}

\n

\n {edge.node.childMarkdownRemark.frontmatter.startDate} -{' '}\n {edge.node.childMarkdownRemark.frontmatter.endDate}\n

\n

\n Description: {edge.node.childMarkdownRemark.frontmatter.description}\n

\n

\n url{' '}\n {` | `}\n \n source\n \n

\n \n \n ))}\n
\n )\n}\n\nexport default ProjectsPage\n"],"names":["data","useStaticQuery","title","allFile","edges","map","edge","style","marginBottom","key","node","childMarkdownRemark","id","frontmatter","startDate","endDate","description","href","url","source","className","dangerouslySetInnerHTML","__html","html"],"sourceRoot":""}