mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import React from "react";
|
|
import { Helmet } from "react-helmet";
|
|
import { useStaticQuery, graphql } from "gatsby";
|
|
|
|
export const Seo = ({ lang = "en", meta = [] }) => {
|
|
const { site } = useStaticQuery(
|
|
graphql`
|
|
query {
|
|
site {
|
|
siteMetadata {
|
|
title
|
|
description
|
|
author
|
|
}
|
|
}
|
|
}
|
|
`
|
|
);
|
|
|
|
const metaDescription = site.siteMetadata.description;
|
|
const title = site.siteMetadata?.title;
|
|
|
|
return (
|
|
<Helmet
|
|
htmlAttributes={{
|
|
lang,
|
|
}}
|
|
title={title}
|
|
titleTemplate={`%s`}
|
|
meta={[
|
|
{
|
|
name: `description`,
|
|
content: metaDescription,
|
|
},
|
|
{
|
|
property: `og:title`,
|
|
content: title,
|
|
},
|
|
{
|
|
property: `og:description`,
|
|
content: metaDescription,
|
|
},
|
|
{
|
|
property: `og:type`,
|
|
content: `website`,
|
|
},
|
|
{
|
|
name: `twitter:card`,
|
|
content: `summary`,
|
|
},
|
|
{
|
|
name: `twitter:creator`,
|
|
content: site.siteMetadata?.author || ``,
|
|
},
|
|
{
|
|
name: `twitter:title`,
|
|
content: title,
|
|
},
|
|
{
|
|
name: `twitter:description`,
|
|
content: metaDescription,
|
|
},
|
|
].concat(meta)}
|
|
/>
|
|
);
|
|
};
|