From 410ae17608767503482937e9679826abd3a1fa0b Mon Sep 17 00:00:00 2001 From: Siddhartha Bhattarai Date: Sun, 15 Mar 2026 20:51:01 +0545 Subject: [PATCH 1/2] feat: add LinkedIn link support for blog post authors --- pages/blog/posts/[slug].page.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pages/blog/posts/[slug].page.tsx b/pages/blog/posts/[slug].page.tsx index 4f4ce4d9a..196b682ed 100644 --- a/pages/blog/posts/[slug].page.tsx +++ b/pages/blog/posts/[slug].page.tsx @@ -94,6 +94,17 @@ export default function StaticMarkdownPage({ @{author.twitter} )} + {author.link && !author.twitter && ( + + LinkedIn + + )} + ); From f92139a04a2c45f7decee968da8d4186970de98e Mon Sep 17 00:00:00 2001 From: Siddhartha Bhattarai Date: Sun, 15 Mar 2026 21:00:26 +0545 Subject: [PATCH 2/2] fix: fix indentation in slug page --- pages/blog/posts/[slug].page.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pages/blog/posts/[slug].page.tsx b/pages/blog/posts/[slug].page.tsx index 196b682ed..a24a07f92 100644 --- a/pages/blog/posts/[slug].page.tsx +++ b/pages/blog/posts/[slug].page.tsx @@ -96,15 +96,14 @@ export default function StaticMarkdownPage({ )} {author.link && !author.twitter && ( - LinkedIn + LinkedIn )} - );