From 889de9421af675e963a11508fc2dfdbd0e7e1fe7 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 10 Jul 2026 04:08:51 +0000 Subject: [PATCH] seo: expand Organization JSON-LD sameAs from 2 to 10 social profiles - Adds @id anchor linking to entity-graph.json (#organization) - Adds legalName field (VaultSpark Studios LLC) - Expands sameAs from [Discord, GitHub] to all 10 primary social profiles, matching the entity-graph.json canonical source plus Discord and Threads which carry rel="me" in the footer but were absent from the schema Helps Google/Bing knowledge graph entity disambiguation and AI search systems correctly attribute studio content across all official channels. --- index.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 74dbf2dea..e615454eb 100644 --- a/index.html +++ b/index.html @@ -58,13 +58,23 @@ { "@context": "https://schema.org", "@type": "Organization", + "@id": "https://vaultsparkstudios.com/#organization", "name": "VaultSpark Studios", + "legalName": "VaultSpark Studios LLC", "url": "https://vaultsparkstudios.com", "logo": "https://vaultsparkstudios.com/assets/vaultspark-cinematic-logo.webp", "description": "Creative studio building games, cinematic worlds, community tools, and AI-native intelligence.", "sameAs": [ + "https://github.com/VaultSparkStudios", + "https://www.youtube.com/@VaultSparkStudios", + "https://x.com/VaultSpark", + "https://www.instagram.com/vaultsparkstudios/", + "https://www.reddit.com/r/VaultSparkStudios/", + "https://bsky.app/profile/vaultsparkstudios.bsky.social", + "https://www.facebook.com/VaultSparkStudios/", + "https://www.tiktok.com/@vaultsparkstudios", "https://discord.gg/rKG9GGaSdu", - "https://github.com/VaultSparkStudios" + "https://www.threads.com/@vaultsparkstudios" ] }