diff --git a/frontend/src/app/article/[slug]/page.tsx b/frontend/src/app/article/[slug]/page.tsx index d32add10..09da1d1c 100644 --- a/frontend/src/app/article/[slug]/page.tsx +++ b/frontend/src/app/article/[slug]/page.tsx @@ -145,6 +145,12 @@ export default async function SoftwareArticlePage({ author: { '@type': 'Person', name: review.author.fullName || 'Anonymous', + description: review.author.bio || undefined, + image: review.author.avatarUrl || undefined, + url: absoluteUrl( + `/profile/${review.author.userId}`, + ).toString(), + sameAs: review.author.websiteUrl || undefined, }, reviewBody: review.content, }