@@ -10,10 +10,15 @@ import {DocPage} from 'sentry-docs/components/docPage';
10
10
import { Home } from 'sentry-docs/components/home' ;
11
11
import { Include } from 'sentry-docs/components/include' ;
12
12
import { PlatformContent } from 'sentry-docs/components/platformContent' ;
13
- import { getDocsRootNode , nodeForPath } from 'sentry-docs/docTree' ;
13
+ import {
14
+ getCurrentPlatformOrGuide ,
15
+ getDocsRootNode ,
16
+ nodeForPath ,
17
+ } from 'sentry-docs/docTree' ;
14
18
import { getDocsFrontMatter , getFileBySlug } from 'sentry-docs/mdx' ;
15
19
import { mdxComponents } from 'sentry-docs/mdxComponents' ;
16
20
import { setServerContext } from 'sentry-docs/serverContext' ;
21
+ import { capitilize } from 'sentry-docs/utils' ;
17
22
18
23
export async function generateStaticParams ( ) {
19
24
const docs = await getDocsFrontMatter ( ) ;
@@ -112,10 +117,14 @@ export async function generateMetadata({params}: MetadataProps): Promise<Metadat
112
117
const images = [ { url : `${ domain } /meta.png` , width : 1200 , height : 630 } ] ;
113
118
114
119
const rootNode = await getDocsRootNode ( ) ;
120
+
115
121
if ( rootNode && params . path ) {
116
122
const pageNode = nodeForPath ( rootNode , params . path ) ;
117
123
if ( pageNode ) {
118
- title = pageNode . frontmatter . title ;
124
+ const guideOrPlatform = getCurrentPlatformOrGuide ( rootNode , params . path ) ;
125
+ title =
126
+ pageNode . frontmatter . title +
127
+ ( guideOrPlatform ? ` | Sentry for ${ capitilize ( guideOrPlatform . name ) } ` : '' ) ;
119
128
description = pageNode . frontmatter . description ;
120
129
}
121
130
}
0 commit comments