File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,30 @@ export default props => {
19
19
< Helmet htmlAttributes = { { lang : 'en-US' } } >
20
20
< title > { title } </ title >
21
21
< meta name = "description" content = { pkg . description } />
22
- < link rel = "icon" type = "image/png" href = "/icon.png" />
22
+ < link
23
+ rel = "icon"
24
+ media = "(prefers-color-scheme:dark)"
25
+ href = "/icon-dark.png"
26
+ type = "image/png"
27
+ />
28
+ < link
29
+ rel = "icon"
30
+ media = "(prefers-color-scheme:light)"
31
+ href = "/icon.png"
32
+ type = "image/png"
33
+ />
23
34
< link rel = "apple-touch-icon" type = "image/png" href = "/icon.png" />
24
35
< meta name = "twitter:card" content = "summary" />
25
36
< meta name = "twitter:site" content = "@jxnblk" />
26
37
< meta name = "twitter:image" content = "https://theme-ui.com/card.png" />
27
38
< meta name = "twitter:title" content = { title } />
28
39
< meta name = "twitter:description" content = { pkg . description } />
29
40
< meta name = "theme-color" content = { theme . colors . background } />
41
+ < script
42
+ src = "https://unpkg.com/[email protected] /dist/index.js"
43
+ crossOrigin = "anonymous"
44
+ type = "application/javascript"
45
+ />
30
46
</ Helmet >
31
47
)
32
48
}
You can’t perform that action at this time.
0 commit comments