feat(schema): add creator entity (hhivp.com) to WebSite JSON-LD
All checks were successful
deploy / deploy (push) Successful in 1m10s
All checks were successful
deploy / deploy (push) Successful in 1m10s
Entity-сигнал для AI Overviews / Я.Нейро о тех-партнёрстве. Связывает сайт с разработчиком через @id графа. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -24,10 +24,21 @@ const jsonLd = [
|
|||||||
{
|
{
|
||||||
'@context': 'https://schema.org',
|
'@context': 'https://schema.org',
|
||||||
'@type': 'WebSite',
|
'@type': 'WebSite',
|
||||||
|
'@id': `${SITE_URL}/#website`,
|
||||||
name: SITE_TITLE,
|
name: SITE_TITLE,
|
||||||
url: SITE_URL,
|
url: SITE_URL,
|
||||||
inLanguage: SITE_LANG,
|
inLanguage: SITE_LANG,
|
||||||
description: SITE_DESCRIPTION,
|
description: SITE_DESCRIPTION,
|
||||||
|
publisher: { '@id': `${SITE_URL}/#org` },
|
||||||
|
// creator — тех-партнёр, разработчик сайта (hhivp.com). Entity-сигнал
|
||||||
|
// для AI Overviews / Я.Нейро о связи между сайтом и его создателем.
|
||||||
|
creator: {
|
||||||
|
'@type': 'Organization',
|
||||||
|
'@id': 'https://hhivp.com/#organization',
|
||||||
|
name: 'ООО «АйТи Решения»',
|
||||||
|
url: 'https://hhivp.com/',
|
||||||
|
sameAs: ['https://hhivp.com'],
|
||||||
|
},
|
||||||
potentialAction: {
|
potentialAction: {
|
||||||
'@type': 'SearchAction',
|
'@type': 'SearchAction',
|
||||||
target: `${SITE_URL}/?s={query}`,
|
target: `${SITE_URL}/?s={query}`,
|
||||||
@@ -37,6 +48,7 @@ const jsonLd = [
|
|||||||
{
|
{
|
||||||
'@context': 'https://schema.org',
|
'@context': 'https://schema.org',
|
||||||
'@type': 'NewsMediaOrganization',
|
'@type': 'NewsMediaOrganization',
|
||||||
|
'@id': `${SITE_URL}/#org`,
|
||||||
name: SITE_TITLE,
|
name: SITE_TITLE,
|
||||||
url: SITE_URL,
|
url: SITE_URL,
|
||||||
logo: logoUrl,
|
logo: logoUrl,
|
||||||
|
|||||||
Reference in New Issue
Block a user