import NextHead from 'next/head' import { string } from 'prop-types' import React from 'react' const defaultDescription = '' const defaultOGURL = '' const defaultOGImage = '' export const Head = props => {props.title || ''} Head.propTypes = { title: string, description: string, url: string, ogImage: string } export default Head