@@ -22,28 +22,28 @@ export function SEO<P extends Record<string, string | undefined>>(props: {
2222 < title > { `${ title } | ${ endTitle } ` } </ title >
2323
2424 { /*OG tags (WhatsApp, Facebook, etc.)*/ }
25- < meta property = "og:title" content = { title } key = "title " />
26- < meta property = "og:description" content = { description } key = "description3 " />
25+ < meta property = "og:title" content = { title } key = "ogtitle " />
26+ < meta property = "og:description" content = { description } key = "og-description " />
2727
2828 { /*Twitter/X tags — separate!*/ }
29- < meta name = "twitter:title" content = { title } key = "title" />
30- < meta name = "twitter:description" content = { description } key = "description2 " />
29+ < meta name = "twitter:title" content = { title } key = "twitter- title" />
30+ < meta name = "twitter:description" content = { description } key = "twitter-description " />
3131
32- < meta name = "description" content = { description } key = "description1 " />
32+ < meta name = "description" content = { description } key = "description " />
3333
3434 { url && < link rel = "canonical" href = { absUrl } /> }
3535
36- { url && < meta property = "og:url" content = { absUrl } key = "url" /> }
36+ { url && < meta property = "og:url" content = { absUrl } key = "og- url" /> }
3737
3838 { url && (
3939 < meta name = "apple-itunes-app" content = { 'app-id=6444136749, app-argument=' + absUrl } />
4040 ) }
4141
4242 { imageUrl && (
4343 < >
44- < meta property = "og:image" content = { imageUrl } key = "image1 " />
45- < meta name = "twitter:card" content = "summary_large_image" key = "card" />
46- < meta name = "twitter:image" content = { imageUrl } key = "image2 " />
44+ < meta property = "og:image" content = { imageUrl } key = "og-image " />
45+ < meta name = "twitter:card" content = "summary_large_image" key = "twitter- card" />
46+ < meta name = "twitter:image" content = { imageUrl } key = "twitter-image " />
4747 </ >
4848 ) }
4949 </ Head >
0 commit comments