/** * SEO component that queries for data with * Gatsby's useStaticQuery React hook * * See: https://www.gatsbyjs.org/docs/use-static-query/ */ import React, { StatelessComponent } from "react"; import Helmet from "react-helmet"; import { useStaticQuery, graphql } from "gatsby"; import { getCurrentVersion } from '../utils/nodes'; interface MetaProp { name: string, content: any, } interface SEOProps { description?: string, lang?: string, meta?: MetaProp[], title: string } const SEO: StatelessComponent = ({ description, lang, meta, title }) => { const { site } = useStaticQuery(graphql` query { site { siteMetadata { title description author context } } } `); const metaDescription = description || site.siteMetadata.description; return ( ); }; SEO.defaultProps = { lang: `en`, meta: [], description: `` }; export default SEO;