Skip to content

Commit 2e66467

Browse files
committed
feat: Add dynamic author profile page with Firebase data fetching, social links, articles display, and SEO metadata.
1 parent aa7a2ac commit 2e66467

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/team/[author]/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ export async function generateMetadata({
141141
const { author: authorData } = data;
142142

143143
return {
144-
title: `${authorData.name} | L.A.P Team`,
144+
title: `${authorData.name}`,
145145
description: authorData.biography.summary,
146146
openGraph: {
147-
title: `${authorData.name} | L.A.P Team`,
147+
title: `${authorData.name}`,
148148
description: authorData.biography.summary,
149149
url: `https://lap-docs.netlify.app/team/${authorData.slug}`,
150150
images: authorData.avatar
@@ -159,7 +159,7 @@ export async function generateMetadata({
159159
},
160160
twitter: {
161161
card: "summary_large_image",
162-
title: `${authorData.name} | L.A.P Team`,
162+
title: `${authorData.name}`,
163163
description: authorData.biography.summary,
164164
images: authorData.avatar ? [authorData.avatar] : [],
165165
},

0 commit comments

Comments
 (0)