diff --git a/src/app/(home)/story/page.tsx b/src/app/(home)/story/page.tsx index 96f5015..e242b78 100644 --- a/src/app/(home)/story/page.tsx +++ b/src/app/(home)/story/page.tsx @@ -108,6 +108,12 @@ export default async function Story({ const images = getPageImageUrls(recordMap, { mapImageUrl: (url) => url }); + const description = getPageProperty( + "description", + Object.values(recordMap.block)[0].value, + recordMap, + ); + const repo = process.env.COMMENTS_REPO; const repoId = process.env.COMMENTS_REPO_ID; const category = process.env.COMMENTS_CATEGORY; @@ -138,6 +144,9 @@ export default async function Story({

{title}

+

+ {description} +

{repo && repoId && category && categoryId ? ( diff --git a/src/app/globals.css b/src/app/globals.css index a41f5b2..676460f 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -20,7 +20,7 @@ --secondary-foreground: 24 9.8% 10%; --muted: 60 4.8% 95.9%; - --muted-foreground: 25 5.3% 44.7%; + --muted-foreground: 240 10% 40%; --accent: 60 4.8% 95.9%; --accent-foreground: 24 9.8% 10%;