feat: add opentags
All checks were successful
Deploy to SFTP Server / build (push) Successful in 4m0s
All checks were successful
Deploy to SFTP Server / build (push) Successful in 4m0s
This commit is contained in:
13
src/components/MetaTags.astro
Normal file
13
src/components/MetaTags.astro
Normal 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" />
|
Reference in New Issue
Block a user