mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
107 lines
2.7 KiB
JavaScript
107 lines
2.7 KiB
JavaScript
import { ThemeProvider } from 'styled-components';
|
||
import Head from 'next/head';
|
||
import { DefaultSeo } from 'next-seo';
|
||
import { GlobalStyles } from '../../static/normalize';
|
||
import SEO from '../../config/next-seo';
|
||
import { theme } from '../theme';
|
||
|
||
interface Props {
|
||
children?: any;
|
||
}
|
||
|
||
export default function Providers({ children }: Props) {
|
||
return (
|
||
<>
|
||
<DefaultSeo {...SEO} />
|
||
|
||
<Head>
|
||
<meta name="theme-color" content="#FFF" key="theme-color" />
|
||
|
||
<meta
|
||
name="description"
|
||
content="A checklist for staying safe on the internet"
|
||
/>
|
||
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="57x57"
|
||
href="/static/apple-icon-57x57.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="60x60"
|
||
href="/static/apple-icon-60x60.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="72x72"
|
||
href="/static/apple-icon-72x72.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="76x76"
|
||
href="/static/apple-icon-76x76.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="114x114"
|
||
href="/static/apple-icon-114x114.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="120x120"
|
||
href="/static/apple-icon-120x120.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="144x144"
|
||
href="/static/apple-icon-144x144.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="152x152"
|
||
href="/static/apple-icon-152x152.png"
|
||
/>
|
||
<link
|
||
rel="apple-touch-icon"
|
||
sizes="180x180"
|
||
href="/static/apple-icon-180x180.png"
|
||
/>
|
||
<link
|
||
rel="icon"
|
||
type="image/png"
|
||
sizes="192x192"
|
||
href="/static/android-icon-192x192.png"
|
||
/>
|
||
<link
|
||
rel="icon"
|
||
type="image/png"
|
||
sizes="32x32"
|
||
href="/static/favicon-32x32.png"
|
||
/>
|
||
<link
|
||
rel="icon"
|
||
type="image/png"
|
||
sizes="96x96"
|
||
href="/static/favicon-96x96.png"
|
||
/>
|
||
<link
|
||
rel="icon"
|
||
type="image/png"
|
||
sizes="16x16"
|
||
href="/static/favicon-16x16.png"
|
||
/>
|
||
<link rel="manifest" href="/static/manifest.json" />
|
||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png" />
|
||
<link rel="mask-icon" href="/static/pinned-tab.svg" color="#FFF" />
|
||
<meta name="msapplication-TileColor" content="#ffffff" />
|
||
</Head>
|
||
|
||
<GlobalStyles />
|
||
|
||
<ThemeProvider theme={theme}>
|
||
{children}
|
||
</ThemeProvider>
|
||
</>
|
||
);
|
||
}
|