feat: update meta site_name
This commit is contained in:
parent
1a69da8af6
commit
2358ec6d6f
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@ export interface Props {
|
||||||
|
|
||||||
const { article } = Astro.props
|
const { article } = Astro.props
|
||||||
const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy'
|
const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy'
|
||||||
|
const siteName = 'cozy.pub'
|
||||||
---
|
---
|
||||||
|
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
|
@ -66,7 +67,7 @@ const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy'
|
||||||
<meta property="og:title" content={appTitle} />
|
<meta property="og:title" content={appTitle} />
|
||||||
<meta property="og:url" content={Astro.url.href} />
|
<meta property="og:url" content={Astro.url.href} />
|
||||||
<meta property="og:image" content="/touch-icon-large.png" />
|
<meta property="og:image" content="/touch-icon-large.png" />
|
||||||
<meta property="og:site_name" content={appTitle} />
|
<meta property="og:site_name" content={siteName} />
|
||||||
|
|
||||||
<!-- Icons -->
|
<!-- Icons -->
|
||||||
<link rel="icon" href="favicon.svg" />
|
<link rel="icon" href="favicon.svg" />
|
||||||
|
|
Loading…
Reference in a new issue