import { PageProps } from 'gatsby'; import React from 'react'; import { Helmet } from 'react-helmet'; import ogImagePath from '../images/og-image.jpeg'; interface Props { title: string; description?: string; location: PageProps['location']; } export const SEO: React.VFC = ({ title, description, location }) => ( {description && } );