import React from 'react' import { PageProps, Link } from 'gatsby' import styled from 'styled-components' import { Hero, HeroHeading, HeroDesc } from './style' import { BottomSectionArrow, OutlineButton } from '../shared/styledComponents' import { Container } from '../shared' import { pathPrefix } from '../../../gatsby-config.js' type DataProps = { location: Location heading: string desc: string } const HeroSection: React.FC> = ({ location, heading, desc }) => ( {heading} {desc} {location.pathname === pathPrefix + '/' && ( Try Data Controller )} ) export default HeroSection