Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 7x 12x | import React from "react";
import { Helmet } from "react-helmet-async";
import config from "@/config/index.json";
const Head = () => (
<Helmet
defaultTitle={config.siteTitle}
titleTemplate={`%s | ${config.siteTitle}`}
>
<meta name="description" content={config.description} />
<meta name="keyword" content={config.keywords} />
<meta name="theme-color" content="#33b546" />
<meta name="msapplication-navbutton-color" content="#33b546" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#33b546" />
<link rel="shortcut icon" href="/assets/usericon.jpeg" />
<meta
name="google-site-verification"
content={config.googleSiteVerification}
/>
</Helmet>
);
export default Head;
|