feat: add Organization JSON-LD to homepage (Task 8)

This commit is contained in:
2026-05-25 19:38:02 +08:00
parent 6b25e5918b
commit 183bdc96c0
+17
View File
@@ -582,6 +582,23 @@ export default function Landing() {
}), }),
}} }}
/> />
{/* Organization structured data */}
<script
type='application/ld+json'
dangerouslySetInnerHTML={{
__html: JSON.stringify({
"@context": "https://schema.org",
"@type": "Organization",
name: "DeckyVault",
url: "https://deckyvault.xyz",
logo: "https://deckyvault.xyz/icon.png",
sameAs: [
"https://github.com/AdrianBonpin/deckyvault",
],
}),
}}
/>
</> </>
) )
} }