1
1
import { images , site } from "@packages/settings" ;
2
2
3
- const { title, description, pageURL } = site ;
3
+ const { title, description, homepage } = site ;
4
4
5
5
function Metadata ( ) {
6
6
return (
@@ -9,24 +9,24 @@ function Metadata() {
9
9
< meta name = "description" content = { description } />
10
10
< link rel = "icon" type = "image/svg+xml" href = { images . icon } />
11
11
12
- { /* Google / Search Engine Tags */ }
13
- < meta itemProp = "name" content = { title } />
14
- < meta itemProp = "description" content = { description } />
15
- < meta itemProp = "image" content = { images . logo } />
16
-
17
- { /* Facebook Meta Tags */ }
12
+ { /* Open Graph / Facebook */ }
18
13
< meta property = "og:type" content = "website" />
19
- < meta property = "og:url" content = { pageURL } />
14
+ < meta property = "og:url" content = { homepage } />
20
15
< meta property = "og:title" content = { title } />
21
- < meta property = "og:description" content = { description } />
22
- < meta property = "og:image" content = { images . logo } />
16
+ < meta property = "og:image" content = { images . og } />
23
17
< meta property = "og:logo" content = { images . logo } />
18
+ < meta property = "og:description" content = { description } />
19
+
20
+ { /* Google / Search Engine Tags */ }
21
+ < meta itemProp = "name" content = { title } />
22
+ < meta itemProp = "description" content = { description } />
23
+ < meta itemProp = "image" content = { images . og } />
24
24
25
25
{ /* Twitter Meta Tags */ }
26
26
< meta name = "twitter:card" content = "summary_large_image" />
27
27
< meta name = "twitter:title" content = { title } />
28
28
< meta name = "twitter:description" content = { description } />
29
- < meta name = "twitter:image" content = { images . logo } />
29
+ < meta name = "twitter:image" content = { images . og } />
30
30
</ >
31
31
) ;
32
32
}
0 commit comments