-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMeta.js
62 lines (61 loc) · 1.93 KB
/
Meta.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import Head from 'next/head'
export default ({ title }) => (
<Head>
<meta charSet='utf-8' />
<meta
name='viewport'
content='width=device-width, initial-scale=1, shrink-to-fit=no'
/>
<meta httpEquiv='x-ua-compatible' content='ie=edge' />
<link
rel='apple-touch-icon'
sizes='180x180'
href='static/favicons/apple-touch-icon.png'
/>
<link
rel='icon'
type='image/png'
href='static/favicons/favicon-32x32.png'
sizes='32x32'
/>
<link
rel='icon'
type='image/png'
href='static/favicons/favicon-16x16.png'
sizes='16x16'
/>
<link rel='manifest' href='static/favicons/manifest.json' />
<link
rel='mask-icon'
href='static/favicons/safari-pinned-tab.svg'
color='#3f51b5'
/>
<meta name='msapplication-TileColor' content='#3f51b5' />
<meta
name='msapplication-TileImage'
content='static/favicons/mstile-144x144.png'
/>
<meta name='theme-color' content='#3f51b5' />
<title>{title}</title>
<meta
name='description'
content='The app that helps you find the best links shared by Coderplex community'
/>
<meta property='og:type' content='website' />
<meta property='og:title' content={title} />
<meta property='og:url' content='https://linklet.ml' />
<meta
property='og:image'
content='https://res.cloudinary.com/vinaypuppal/image/upload/v1494000036/Screen_Shot_2017-05-05_at_9.29.53_PM_ojqbio.png'
/>
<meta property='og:site_name' content='Linklet' />
<meta
property='og:description'
content='The app that helps you find the best links shared by Coderplex community!'
/>
<link rel='preconnect' href='https://images.weserv.nl' />
<link rel='preconnect' href='https://res.cloudinary.com' />
<link rel='preconnect' href='https://www.google-analytics.com' />
<link rel='preconnect' href='https://cdn.rawgit.com' />
</Head>
)