diff --git a/components/NotionPage.tsx b/components/NotionPage.tsx index 27b0aa5..698ab1c 100644 --- a/components/NotionPage.tsx +++ b/components/NotionPage.tsx @@ -297,6 +297,7 @@ export function NotionPage({ description={socialDescription} image={socialImage} url={canonicalPageUrl} + isBlogPost={isBlogPost} /> {isLiteMode && } diff --git a/components/PageHead.tsx b/components/PageHead.tsx index c83f925..0ede51f 100644 --- a/components/PageHead.tsx +++ b/components/PageHead.tsx @@ -10,12 +10,14 @@ export function PageHead({ description, pageId, image, - url + url, + isBlogPost }: types.PageProps & { title?: string description?: string image?: string url?: string + isBlogPost?: boolean }) { const rssFeedUrl = `${config.host}/feed`