mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-06-19 19:12:06 +02:00
Fix variable
This commit is contained in:
parent
70f50b78bb
commit
b97a82611e
1 changed files with 3 additions and 3 deletions
|
@ -88,8 +88,8 @@ function SEO({ description, meta, title, speakable, image, children }) {
|
|||
|
||||
{
|
||||
image && [
|
||||
<meta name="twitter:image" content={meta.siteUrl + image} key="twimg"/>,
|
||||
<meta name="og:image" content={meta.siteUrl + image} key="ogimg"/>,
|
||||
<meta name="twitter:image" content={siteMeta.siteUrl + image} key="twimg"/>,
|
||||
<meta name="og:image" content={siteMeta.siteUrl + image} key="ogimg"/>,
|
||||
]
|
||||
}
|
||||
|
||||
|
@ -101,7 +101,7 @@ function SEO({ description, meta, title, speakable, image, children }) {
|
|||
"name": title,
|
||||
"url": siteMeta.siteUrl+location.pathname,
|
||||
"speakable": speakable,
|
||||
"image": meta.siteUrl + image,
|
||||
"image": siteMeta.siteUrl + image,
|
||||
"about": {
|
||||
"@type": "Person",
|
||||
"name": siteMeta.givenName + " " + siteMeta.familyName,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue