next-seo
next-seo copied to clipboard
WebSiteJsonLd
Is your feature request related to a problem? Please describe.
I have both <OrganizationJsonLd/>
and <LocalBusinessJsonLd/>
yet my siteName on Google search does not change from a URL. Following these docs, it appears we are missing <WebSiteJsonLd/>
either that or I am missing something?
I also have my all metadata fields setup correctly.
Describe the solution you'd like
<WebSiteJsonLd
useAppDir={true}
siteMetadata={{
'@type': 'WebSite',
name: 'Burnt Toast',
alternateName: ['BT', 'B-T', 'Burnt Toast Shop'],
url: 'https://www.example.com/',
}}
/>
Describe alternatives you've considered
- Tried other jsonLD tags
- Tried Next.js metadata tags
- Passing custom data to
<DefaultSeo/>
<DefaultSeo
dangerouslySetAllPagesToSources={{
websiteJsonLd: {
"@context": "https://schema.org",
"@type": "WebSite",
name: "Burnt Toast",
alternateName: ["BT", "B-T", "Burnt Toast Shop"],
url: "https://www.example.com/",
},
}}
/>
would be nice