Skip to content

Commit 3b69628

Browse files
authored
chore: add og image color (#5183)
1 parent 35cba99 commit 3b69628

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/frontend/lib/utils/og-metadata.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,14 @@ export async function generateNotebookMetadata(
3838

3939
const previousImages = (await parent).openGraph?.images || [];
4040
const title = `${orgName}/${notebookName}`;
41-
const description = "Interactive data analysis and visualization";
41+
const description =
42+
validation.data.description ||
43+
"Interactive data analysis and visualization";
4244

4345
return {
4446
title,
4547
description,
48+
themeColor: "#ffffff",
4649
openGraph: {
4750
title,
4851
description,

0 commit comments

Comments
 (0)