This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/src/components/seo.js

84 lines
1.6 KiB
JavaScript
Raw Normal View History

/**
* 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
}
}
}
`
);
return (
<Helmet
htmlAttributes={{
2020-03-23 14:02:47 +00:00
lang,
}}
title={site.siteMetadata.title}
meta={[
{
name: `description`,
2020-03-23 14:02:47 +00:00
content: site.siteMetadata.description,
},
{
property: `og:title`,
2020-03-23 14:02:47 +00:00
content: site.siteMetadata.title,
},
{
property: `og:description`,
2020-03-23 14:02:47 +00:00
content: site.siteMetadata.description,
},
{
property: `og:type`,
2020-03-23 14:02:47 +00:00
content: `website`,
},
{
name: `twitter:card`,
2020-03-23 14:02:47 +00:00
content: `summary`,
},
{
name: `twitter:creator`,
2020-03-23 14:02:47 +00:00
content: site.siteMetadata.author,
},
{
name: `twitter:title`,
2020-03-23 14:02:47 +00:00
content: site.siteMetadata.title,
},
{
name: `twitter:description`,
2020-03-23 14:02:47 +00:00
content: site.siteMetadata.description,
},
].concat(meta)}
/>
);
}
SEO.defaultProps = {
lang: `en`,
meta: [],
2020-03-23 14:02:47 +00:00
description: ``,
};
SEO.propTypes = {
lang: PropTypes.string,
2020-03-23 14:02:47 +00:00
meta: PropTypes.arrayOf(PropTypes.object),
};
export default SEO;