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 }) => (

{title}

{children}

) SectionLink.propTypes = { to: PropTypes.string.isRequired, title: PropTypes.string.isRequired, children: PropTypes.any } const IndexPage = ({ location }) => ( Understand the fundamentals of Ocean Protocol. Setting up the Ocean Protocol components. Browse tutorials for most common setup and development use-cases. ) IndexPage.propTypes = { location: PropTypes.object.isRequired } export default IndexPage