/** * SEO component that queries for data with * Gatsby's useStaticQuery React hook * * See: https://www.gatsbyjs.org/docs/use-static-query/ */ import React from "react"; import PropTypes from "prop-types"; import { Helmet } from "react-helmet"; import { useStaticQuery, graphql } from "gatsby"; function SEO({ lang, meta }) { const { site } = useStaticQuery( graphql` query { site { siteMetadata { title author description image } } } ` ); return ( ); } SEO.defaultProps = { lang: `en`, meta: [], description: ``, }; SEO.propTypes = { lang: PropTypes.string, meta: PropTypes.arrayOf(PropTypes.object), }; export default SEO;