89 lines
1.7 KiB
JavaScript
89 lines
1.7 KiB
JavaScript
/**
|
|
* 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 (
|
|
<Helmet
|
|
htmlAttributes={{
|
|
lang,
|
|
}}
|
|
title={site.siteMetadata.title}
|
|
meta={[
|
|
{
|
|
name: `description`,
|
|
content: site.siteMetadata.description,
|
|
},
|
|
{
|
|
property: `og:title`,
|
|
content: site.siteMetadata.title,
|
|
},
|
|
{
|
|
property: `og:description`,
|
|
content: site.siteMetadata.description,
|
|
},
|
|
{
|
|
property: `og:type`,
|
|
content: `website`,
|
|
},
|
|
{
|
|
property: `og:image`,
|
|
content: site.siteMetadata.image,
|
|
},
|
|
{
|
|
name: `twitter:card`,
|
|
content: `summary`,
|
|
},
|
|
{
|
|
name: `twitter:creator`,
|
|
content: site.siteMetadata.author,
|
|
},
|
|
{
|
|
name: `twitter:title`,
|
|
content: site.siteMetadata.title,
|
|
},
|
|
{
|
|
name: `twitter:description`,
|
|
content: site.siteMetadata.description,
|
|
},
|
|
].concat(meta)}
|
|
/>
|
|
);
|
|
}
|
|
|
|
SEO.defaultProps = {
|
|
lang: `en`,
|
|
meta: [],
|
|
description: ``,
|
|
};
|
|
|
|
SEO.propTypes = {
|
|
lang: PropTypes.string,
|
|
meta: PropTypes.arrayOf(PropTypes.object),
|
|
};
|
|
|
|
export default SEO;
|