We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1834e29 + 6283497 commit 67e3b6fCopy full SHA for 67e3b6f
components/NotionPage.tsx
@@ -297,6 +297,7 @@ export function NotionPage({
297
description={socialDescription}
298
image={socialImage}
299
url={canonicalPageUrl}
300
+ isBlogPost={isBlogPost}
301
/>
302
303
{isLiteMode && <BodyClassName className='notion-lite' />}
components/PageHead.tsx
@@ -10,12 +10,14 @@ export function PageHead({
10
description,
11
pageId,
12
image,
13
- url
+ url,
14
+ isBlogPost
15
}: types.PageProps & {
16
title?: string
17
description?: string
18
image?: string
19
url?: string
20
+ isBlogPost?: boolean
21
}) {
22
const rssFeedUrl = `${config.host}/feed`
23
0 commit comments