import React from 'react' import PropTypes from 'prop-types' import { Link } from 'gatsby' import Layout from '../components/Layout' import Content from '../components/Content' // import styles from './index.module.scss' const SectionLink = ({ to, title, children }) => (
{children}
) SectionLink.propTypes = { to: PropTypes.string.isRequired, title: PropTypes.string.isRequired, children: PropTypes.any } const IndexPage = ({ location }) => (