Skip to content

Commit f073d98

Browse files
committed
chore: missing type on social metadata
1 parent 91e9289 commit f073d98

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

frontends/catalog/src/utils/social.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ export function generateSocialMetadata(title: string, description: string, image
33
return [];
44
}
55
return [
6+
{ property: 'og:type', content: 'website' },
67
{ property: 'og:title', content: title },
78
{ property: 'og:description', content: description },
89
{ property: 'og:image', content: imageUrl },
910
{ property: 'og:url', content: pageUrl },
11+
{ name: 'twitter:card', content: 'summary_large_image' },
1012
{ name: 'twitter:title', content: title },
1113
{ name: 'twitter:description', content: description },
1214
{ name: 'twitter:image', content: imageUrl },

0 commit comments

Comments
 (0)