From 037f296b83617bf0b1ed1a8d8c6d8992cacd0a80 Mon Sep 17 00:00:00 2001 From: Mykola Ratushniak Date: Fri, 17 Apr 2026 11:05:52 +0300 Subject: [PATCH] Add author bylines with credentials to demonstrate expertise --- frontend/src/app/article/[slug]/page.tsx | 6 ++++++ 1 file changed, 6 insertions(+) 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, }