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