-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenGraph.astro
27 lines (24 loc) · 973 Bytes
/
OpenGraph.astro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
interface Props {
title: string
description: string
image: string
}
const {
title = 'JSConf Chile 2025 | La más prestigiosa conferencia de JavaScript',
description = 'Acompáñanos en la tercera edición de la JSConf Chile donde tendremos Charlistas internacionales, comunidad, aprendizaje y conexiones.',
image = '/og/og.jpg'
} = Astro.props
---
<!-- Facebook Meta Tags -->
<meta content={title} property="og:title" />
<meta content={description} property="og:description" />
<meta content={new URL(image, Astro.url)} property="og:image" />
<meta content={Astro.url.href} property="og:url" />
<meta content="website" property="og:type" />
<!-- Twitter Meta Tags -->
<meta content="summary_large_image" name="twitter:card" />
<meta content={title} name="twitter:title" />
<meta content={description} name="twitter:description" />
<meta content={new URL(image, Astro.url)} name="twitter:image" />
<meta content={Astro.url.href} property="twitter:url" />