feat: update meta site_name

This commit is contained in:
Ayo Ayco 2025-03-02 21:18:34 +01:00
parent 1a69da8af6
commit 2358ec6d6f

View file

@ -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" />