1import React from 'react';
2
3const Document = ({ Html, Head, Body, children }) => (
4 <Html lang="en">
5 <Head>
6 <meta charSet="utf-8" />
7 <meta httpEquiv="X-UA-Compatible" content="IE=edge" />
8 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9 <meta
10 name="description"
11 content="A highly customisable and versatile GraphQL client."
12 />
13 <meta property="og:title" content="urql Documentation" />
14 <meta property="og:site_name" content="urql Documentation" />
15 <meta property="og:type" content="website" />
16 <meta
17 property="og:url"
18 content="http://www.formidable.com/open-source/urql/"
19 />
20 <meta
21 property="og:description"
22 content="A highly customisable and versatile GraphQL client."
23 />
24 <link
25 rel="icon"
26 type="image/png"
27 sizes="32x32"
28 href="/favicon/favicon-32.png"
29 />
30 <link rel="manifest" href="./site.webmanifest" />
31 <meta name="msapplication-TileColor" content="#ff4081" />
32 <meta name="msapplica tion-config" content="./browserconfig.xml" />
33 <meta name="theme-color" content="#ffffff" />
34 <link
35 href="https://fonts.googleapis.com/css?family=Space+Mono&display=swap"
36 rel="stylesheet"
37 />
38 <title>urql Documentation</title>
39 </Head>
40 <Body>{children}</Body>
41 </Html>
42);
43
44export default Document;