From 86a87c58872e5f9c6a90b2e8c55f6b99653f3cdb Mon Sep 17 00:00:00 2001 From: Jason Colapietro Date: Wed, 9 Sep 2026 22:26:14 -0400 Subject: [PATCH] seo: link the Organization node to its founder The root layout emits Organization, WebSite and Person nodes in one graph, and the Person node was already there, but nothing tied the company to the person. Add founder pointing at the canonical Person @id so the relationship is machine-readable. --- src/app/layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c7a549a..610966c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -98,6 +98,7 @@ const websiteJsonLd = { 'https://www.linkedin.com/company/suede-labs', 'https://www.wikidata.org/wiki/Q141169484', ], + founder: { '@id': JASON_PERSON_ID }, }, { '@type': 'Person',