import React from 'react' import PropTypes from 'prop-types' import { Link, graphql } from 'gatsby' import Layout from '../components/Layout' import HeaderSection from '../components/HeaderSection' import Content from '../components/Content' const TutorialsIndexPage = ({ data, location }) => { const { edges } = data.allMarkdownRemark const TutorialsList = edges.map(({ node }) => { const { title } = node.frontmatter const { slug } = node.fields return (