Skip to content

Commit 4d7608a

Browse files
committed
Improved opengraph title and descriptions
1 parent 1ee5de6 commit 4d7608a

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

pcd-website/src/pages/event/[id].astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ const ogImageUrl = redirectUrl
3535
? ''
3636
: `${siteUrl}${(await getImage({ src: ogImageSrc, format: 'jpeg', quality: 85 })).src}`;
3737
const title = `${node.event_name} — Processing Community Day 2026`;
38-
const description = node.event_short_description || `Join Processing Community Day 2026 in ${node.city ?? node.country ?? 'your city'}.`;
38+
const locationLabel = node.city || 'your city';
39+
const description = node.event_short_description || node.details_text.slice(0, 200).trimEnd() || `Join the global celebration at Processing Community Day 2026 in ${locationLabel}. Find your local event on the map, or start a PCD in your community.`;
3940
---
4041

4142
<!DOCTYPE html>

pcd-website/src/pages/index.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ const pageUrl = Astro.url.href;
2323
<meta charset="utf-8" />
2424
<meta name="viewport" content="width=device-width, initial-scale=1" />
2525
<title>Processing Community Day 2026</title>
26-
<meta name="description" content="Explore Processing Community Day 2026 nodes around the world. Find your local event on the interactive map." />
27-
<meta property="og:title" content="Processing Community Day 2026" />
28-
<meta property="og:description" content="Explore Processing Community Day 2026 nodes around the world. Find your local event on the interactive map." />
26+
<meta name="description" content="Discover the global celebration of creativity and coding at Processing Community Day 2026! Explore events worldwide, connect with local communities, and join the fun. Find an event near you or start your own PCD today!" />
27+
<meta property="og:title" content="Join the global celebration of creativity and coding at Processing Community Day 2026!" />
28+
<meta property="og:description" content="Explore events worldwide, connect with local communities, and join the fun. Find an event near you or start your own PCD today!" />
2929
<meta property="og:type" content="website" />
3030
<meta property="og:url" content={pageUrl} />
3131
<meta property="og:image" content={ogImageUrl} />
3232
<meta property="og:image:width" content="1200" />
3333
<meta property="og:image:height" content="630" />
3434
<meta name="twitter:card" content="summary_large_image" />
35-
<meta name="twitter:title" content="Processing Community Day 2026" />
36-
<meta name="twitter:description" content="Explore Processing Community Day 2026 nodes around the world. Find your local event on the interactive map." />
35+
<meta name="twitter:title" content="Join the global celebration of creativity and coding at Processing Community Day 2026!" />
36+
<meta name="twitter:description" content="Explore events worldwide, connect with local communities, and join the fun. Find an event near you or start your own PCD today!" />
3737
<meta name="twitter:image" content={ogImageUrl} />
3838
<link rel="icon" type="image/x-icon" href={`${import.meta.env.BASE_URL}/favicon.ico`} />
3939
<link

0 commit comments

Comments
 (0)