add og:title property
All checks were successful
/ build (pull_request) Successful in 27s

This commit is contained in:
dario 2026-09-23 15:40:24 +02:00
commit c8cf9256c2
Signed by: dario
SSH key fingerprint: SHA256:zP7OE8nhYwOWaDhOawrP6NmUVcZWi0wyPKQa6052GpM

View file

@ -16,9 +16,10 @@ const props = Astro.props
<link rel="icon" href={path(import.meta.env.BASE_URL, "/favicon.ico")}/>
<meta name="generator" content={Astro.generator}/>
<title>DIDAYS 2026{props.title ? ` | ${props.title}` : ""}</title>
<meta property="og:image" content={path(import.meta.env.BASE_URL, "/logo_social.png")}>
<meta property="og:type" content="website">
<meta property="og:description" content="DIDAYS: Ein Wochenende digitale Selbstbestimmung">
<meta property="og:title" content="DIDAYS 2026" />
<meta property="og:image" content={path(import.meta.env.BASE_URL, "/logo_social.png")} />
<meta property="og:type" content="website" />
<meta property="og:description" content="DIDAYS: Ein Wochenende digitale Selbstbestimmung" />
</head>
<body class="w-screen min-h-screen m-0">
<Navbar/>