import React, { Fragment } from 'react' import PropTypes from 'prop-types' import Helmet from 'react-helmet' import ReactMarkdown from 'react-markdown' import Content from '../atoms/Content' import FullWidth from '../atoms/FullWidth' import ProjectTechstack from '../molecules/ProjectTechstack' import ProjectLinks from '../molecules/ProjectLinks' import images from '../../images' import './Project.scss' const Project = props => { const project = props.pathContext const title = project.title const img = project.img const img_more = project.img_more const description = project.description const links = project.links const techstack = project.techstack return {title}

{title}

{title} {!!img_more && {img_more.map(key => ( {title} ))} }
} Project.propTypes = { pathContext: PropTypes.object, } export default Project