fix(seo): add twitter:description to all 11 game pages#39
Open
VaultSparkStudios wants to merge 1 commit into
Open
fix(seo): add twitter:description to all 11 game pages#39VaultSparkStudios wants to merge 1 commit into
VaultSparkStudios wants to merge 1 commit into
Conversation
Every game page had twitter:card + twitter:title + twitter:image but was missing twitter:description, leaving X/Twitter cards with blank descriptions on shares. Added twitter:description derived from og:description (social- optimized copy) across all 11 pages. Three pages (gridiron-gm-play, vaultspark-forge, voidfall) were also missing twitter:title and twitter:image and received the full card set. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01MTiwYn1diTSPXSmvoBEZhb
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
Every game page on
vaultsparkstudios.com/games/hadtwitter:card,twitter:title, andtwitter:imagebut was missingtwitter:description. When any of these 11 pages were shared on X/Twitter, the card rendered with a blank description — significantly reducing click-through rate from social shares.Three pages (
gridiron-gm-play,vaultspark-forge,voidfall) were additionally missingtwitter:titleandtwitter:imageentirely, so they received the full card set.Pages fixed
games/vaultspark-football-gm/twitter:descriptiongames/call-of-doodie/twitter:descriptiongames/gridiron-gm/twitter:descriptiongames/mindframe/twitter:descriptiongames/project-unknown/twitter:descriptiongames/solara/twitter:descriptiongames/the-exodus/twitter:descriptiongames/vaultfront/twitter:descriptiongames/gridiron-gm-play/twitter:title+twitter:description+twitter:imagegames/vaultspark-forge/twitter:title+twitter:description+twitter:imagegames/voidfall/twitter:title+twitter:description+twitter:imageSource
Descriptions copied from the existing
og:descriptiontags on each page — those are already social-optimized copy, so no new content was needed.How to verify
Paste any game page URL into the Twitter Card Validator (or use the X post composer preview). The description field should now render instead of showing blank.
Also verify with:
grep -c 'twitter:description' games/*/index.html— all 11 should return 1.Scope
<head>metadata change — no HTML structure, styling, JS, or content modifiedGenerated by Claude Code