1
- import type { NextSeoProps } from 'next-seo'
2
- import { NextSeo } from 'next-seo'
3
1
import { useTheme } from 'next-themes'
4
2
import NextHead from 'next/head'
5
3
import { useMounted } from 'nextra/hooks'
@@ -21,48 +19,39 @@ export function Head(): ReactElement {
21
19
typeof saturation === 'number'
22
20
? { dark : saturation , light : saturation }
23
21
: saturation
24
- const frontMatter = config . frontMatter as NextSeoProps
25
22
26
23
return (
27
- < >
28
- < NextSeo
29
- title = { config . title }
30
- description = { frontMatter . description }
31
- canonical = { frontMatter . canonical }
32
- openGraph = { frontMatter . openGraph }
33
- { ...config . useNextSeoProps ?.( ) }
34
- />
35
- < NextHead >
36
- { config . faviconGlyph ? (
37
- < link
38
- rel = "icon"
39
- href = { `data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text x='50' y='.9em' font-size='90' text-anchor='middle'>${ config . faviconGlyph } </text><style>text{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";fill:black}@media(prefers-color-scheme:dark){text{fill:white}}</style></svg>` }
24
+ < NextHead >
25
+ { config . faviconGlyph ? (
26
+ < link
27
+ rel = "icon"
28
+ href = { `data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text x='50' y='.9em' font-size='90' text-anchor='middle'>${ config . faviconGlyph } </text><style>text{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";fill:black}@media(prefers-color-scheme:dark){text{fill:white}}</style></svg>` }
29
+ />
30
+ ) : null }
31
+ { mounted ? (
32
+ < meta
33
+ name = "theme-color"
34
+ content = { resolvedTheme === 'dark' ? '#111' : '#fff' }
35
+ />
36
+ ) : (
37
+ < >
38
+ < meta
39
+ name = "theme-color"
40
+ content = "#fff"
41
+ media = "(prefers-color-scheme: light)"
40
42
/>
41
- ) : null }
42
- { mounted ? (
43
43
< meta
44
44
name = "theme-color"
45
- content = { resolvedTheme === 'dark' ? '#111' : '#fff' }
45
+ content = "#111"
46
+ media = "(prefers-color-scheme: dark)"
46
47
/>
47
- ) : (
48
- < >
49
- < meta
50
- name = "theme-color"
51
- content = "#fff"
52
- media = "(prefers-color-scheme: light)"
53
- />
54
- < meta
55
- name = "theme-color"
56
- content = "#111"
57
- media = "(prefers-color-scheme: dark)"
58
- />
59
- </ >
60
- ) }
61
- < meta
62
- name = "viewport"
63
- content = "width=device-width, initial-scale=1.0, viewport-fit=cover"
64
- />
65
- < style > { `
48
+ </ >
49
+ ) }
50
+ < meta
51
+ name = "viewport"
52
+ content = "width=device-width, initial-scale=1.0, viewport-fit=cover"
53
+ />
54
+ < style > { `
66
55
:root {
67
56
--nextra-primary-hue: ${ lightHue } deg;
68
57
--nextra-primary-saturation: ${ lightSaturation } %;
@@ -76,8 +65,7 @@ export function Head(): ReactElement {
76
65
--nextra-primary-saturation: ${ darkSaturation } %;
77
66
}
78
67
` } </ style >
79
- { head }
80
- </ NextHead >
81
- </ >
68
+ { head }
69
+ </ NextHead >
82
70
)
83
71
}
0 commit comments