parent
6ba22799cd
commit
af8a79c48d
19 changed files with 145 additions and 2 deletions
@ -0,0 +1,73 @@ |
||||
import NextHead from 'next/head'; |
||||
import siteConfig from '../content/site.json'; |
||||
|
||||
type HelmetProps = { |
||||
title?: string; |
||||
keywords?: string[]; |
||||
canonical?: string; |
||||
description?: string; |
||||
}; |
||||
|
||||
const Helmet = (props: HelmetProps) => ( |
||||
<NextHead> |
||||
<meta charSet='UTF-8' /> |
||||
|
||||
<title>{props.title || siteConfig.title}</title> |
||||
<meta name='description' content={props.description || siteConfig.description} /> |
||||
|
||||
<meta name='author' content={siteConfig.author} /> |
||||
<meta name='keywords' content={props.keywords ? props.keywords.join(',') : siteConfig.keywords.join(',')} /> |
||||
|
||||
<meta name='viewport' |
||||
content='width=device-width, user-scalable=yes, initial-scale=1.0, maximum-scale=3.0, minimum-scale=1.0' /> |
||||
{props.canonical && <link rel='canonical' href={props.canonical} />} |
||||
<meta httpEquiv='Content-Language' content='en' /> |
||||
|
||||
<meta property='og:title' content={props.title || siteConfig.title} /> |
||||
<meta property='og:description' content={props.description || siteConfig.description} /> |
||||
<meta property='og:image' content={`${siteConfig.url.web}${siteConfig.logoSquare}`} /> |
||||
<meta property='og:url' content={siteConfig.url.web} /> |
||||
<meta property='og:type' content='website' /> |
||||
<meta property='article:publisher' content={`https://facebook.com/${siteConfig.facebook}`} /> |
||||
<meta property='og:site_name' content={siteConfig.name} /> |
||||
<meta property='article:author' content={siteConfig.author} /> |
||||
|
||||
<meta name='twitter:card' content='summary' /> |
||||
<meta name='twitter:site' content={`@${siteConfig.twitter}`} /> |
||||
<meta name='twitter:title' content={props.title || siteConfig.title} /> |
||||
<meta name='twitter:description' content={props.description || siteConfig.description} /> |
||||
<meta name='twitter:image' content={`${siteConfig.url.web}${siteConfig.logoSquare}`} /> |
||||
<meta name='twitter:image:alt' content='roadmap.sh' /> |
||||
|
||||
<meta name='mobile-web-app-capable' content='yes' /> |
||||
<meta name='apple-mobile-web-app-capable' content='yes' /> |
||||
<meta name='apple-mobile-web-app-status-bar-style' content='black-translucent' /> |
||||
<link rel='apple-touch-icon' sizes='180x180' href='/manifest/apple-touch-icon.png' /> |
||||
<meta name='msapplication-TileColor' content='#101010' /> |
||||
<meta name='theme-color' content='#848a9a' /> |
||||
|
||||
<link rel='manifest' href='/manifest/manifest.json' /> |
||||
<link rel='icon' type='image/png' sizes='32x32' href='/manifest/icon32.png' /> |
||||
<link rel='icon' type='image/png' sizes='16x16' href='/manifest/icon16.png' /> |
||||
<link rel='shortcut icon' href='/manifest/favicon.ico' type='image/x-icon' /> |
||||
<link rel='icon' href='/manifest/favicon.ico' type='image/x-icon' /> |
||||
|
||||
{ /* Global Site Tag (gtag.js) - Google Analytics */} |
||||
{process.env.GA_SECRET && ( |
||||
<> |
||||
<script async src={`https://www.googletagmanager.com/gtag/js?id=${process.env.GA_SECRET}`} /> |
||||
<script dangerouslySetInnerHTML={{ |
||||
__html: ` |
||||
window.dataLayer = window.dataLayer || []; |
||||
function gtag(){dataLayer.push(arguments);} |
||||
gtag('js', new Date()); |
||||
gtag('config', '${process.env.GA_SECRET}'); |
||||
` |
||||
}} /> |
||||
</> |
||||
)} |
||||
|
||||
</NextHead> |
||||
); |
||||
|
||||
export default Helmet; |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 123 B |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 267 B |
@ -0,0 +1,27 @@ |
||||
{ |
||||
"dir": "ltr", |
||||
"lang": "en", |
||||
"name": "Roadmap", |
||||
"scope": "/", |
||||
"display": "standalone", |
||||
"start_url": "https://roadmap.sh/", |
||||
"short_name": "Roadmap", |
||||
"theme_color": "#EDD07E", |
||||
"description": "Roadmaps to becoming a Modern Developer – roadmap.sh", |
||||
"orientation": "any", |
||||
"background_color": "#101010", |
||||
"related_applications": [], |
||||
"prefer_related_applications": false, |
||||
"icons": [ |
||||
{ |
||||
"src": "/manifest/icon152.png", |
||||
"sizes": "152x152", |
||||
"type": "image/png" |
||||
}, |
||||
{ |
||||
"src": "/manifest/icon196.png", |
||||
"sizes": "196x196", |
||||
"type": "image/png" |
||||
} |
||||
] |
||||
} |
Loading…
Reference in new issue