From a582f0ae961c8a2e760b67769e0acd224ecb07b1 Mon Sep 17 00:00:00 2001 From: Nicholas Meisenheimer <76002357+souredoutlook@users.noreply.github.com> Date: Sat, 23 Mar 2024 11:47:10 -0400 Subject: [PATCH] add zd-site-verification meta tag (#9532) * Update layout.tsx We need to ensure that the docs site has the following meta tag: This will allow Zendesk's Help Center to crawl the site and index docs content for search. More info here: https://support.zendesk.com/hc/en-us/articles/4593564000410-Setting-up-the-search-crawler * use proper syntax for custom meta tag --------- Co-authored-by: abdellah hariti --- app/layout.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/layout.tsx b/app/layout.tsx index 7d3c496c4ede3..d06c154a1a63f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -9,6 +9,9 @@ export const metadata: Metadata = { openGraph: { images: 'https://docs.sentry.io/changelog/assets/og.png', }, + other: { + 'zd-site-verification': 'ocu6mswx6pke3c6qvozr2e', + }, }; export default function RootLayout({children}: {children: React.ReactNode}) {