seo: add og:image dimensions, type, alt, and site_name to journal + game pages#45
Open
VaultSparkStudios wants to merge 1 commit into
Open
seo: add og:image dimensions, type, alt, and site_name to journal + game pages#45VaultSparkStudios wants to merge 1 commit into
VaultSparkStudios wants to merge 1 commit into
Conversation
…rnal + game pages 13 journal pages and 3 game hub/detail pages were missing og:image:width, og:image:height, og:image:type, og:image:alt, and og:site_name. Social platforms (LinkedIn, Facebook, Discord link unfurl, Slack) rely on these for rich previews — missing site_name strips the VaultSpark Studios attribution from every shared link, and missing dimensions cause layout shift in unfurled cards. Pages fixed: journal/* (all 13), games/, games/call-of-doodie/, games/vaultspark-football-gm/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds 5 missing OpenGraph attributes to 16 high-traffic public pages:
og:image:width—1200og:image:height—630og:image:type—image/pngog:image:alt— descriptive alt text per pageog:site_name—VaultSpark StudiosPages fixed:
journal/(hub + 12 articles/sections) — all journal dispatch pagesgames/(hub)games/call-of-doodie/games/vaultspark-football-gm/Why
These are the pages most likely to be shared socially (Discord, X/Twitter, LinkedIn, Slack). The existing OG setup already had
og:title,og:description,og:image, andtwitter:card, but without:og:site_name: social platforms never show "VaultSpark Studios" as the site attribution below the card title — brand context is lost on every shared linkog:image:width/height: platforms that use these to pre-size image containers get layout shift in link unfurls; some crawlers skip fetching the image entirely without hintsog:image:type: some crawlers use this to decide whether to fetch the image at allog:image:alt: accessibility for screen reader users viewing social cards, and used by some AI-indexers to understand the image contextThe homepage already had all 5 of these attributes. This brings the journal and game sections to parity.
What to verify
https://vaultsparkstudios.com/journal/q1-2026-dispatch/) into the OpenGraph debugger — should show site name, correct image dimensions, and alt texthttps://vaultsparkstudios.com/games/vaultspark-football-gm/) into the Twitter Card validator — should render correctlyScope note
101+ pages total are missing these attributes. This PR covers the highest-sharing-velocity pages (journal + live games). A follow-up can sweep
projects/,membership/,contact/,studio/, androadmap/pages with the same pattern.Generated by Claude Code