feat: add opentags
All checks were successful
Deploy to SFTP Server / build (push) Successful in 4m0s

This commit is contained in:
2025-02-18 16:23:51 +01:00
parent 19a703367d
commit 6aa6ddabb0
7 changed files with 39 additions and 3 deletions

View File

@ -0,0 +1,13 @@
---
interface Props {
title: string;
cover: string;
}
---
<meta property="og:title" content={Astro.props.title} />
<meta property="og:type" content="website" />
<meta property="og:url" content={Astro.url} />
<meta property="og:image" content={Astro.props.cover} />
<meta property="og:description" content="Max Richters personal blog" />
<meta property="og:site_name" content="Max Richter" />