Skip to content

Commit 452b148

Browse files
committed
feat: Update author labeling in LatestPosts and PopularArticles components
1 parent 0a5c48e commit 452b148

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

components/LatestPosts/LatestPosts.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default function LatestPosts({
7575
<div className="flex flex-col sm:flex-row justify-between sm:items-center gap-2">
7676
<div className="flex flex-col sm:flex-row gap-2 sm:gap-6">
7777
<span className="flex flex-wrap">
78-
<p className="font-semibold pr-2">Team</p>
78+
<p className="font-semibold pr-2">Author</p>
7979
<p>{latestArticle.authorName}</p>
8080
</span>
8181
<span className="flex flex-wrap">
@@ -144,7 +144,7 @@ export default function LatestPosts({
144144
<div className="flex flex-col sm:flex-row gap-4 justify-between sm:items-center">
145145
<div className="flex flex-col sm:flex-row gap-2 sm:gap-6">
146146
<span className="flex flex-wrap">
147-
<p className="font-semibold pr-2">Team</p>
147+
<p className="font-semibold pr-2">Author</p>
148148
<p>{article.authorName}</p>
149149
</span>
150150
<span className="flex flex-wrap">

components/PopularArticles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export default function PopularArticles({
9292
<Link href={`/posts/${article.slug}`}>{article.title}</Link>
9393
</h3>
9494
<span className="flex gap-2">
95-
<p className="font-semibold">Team:</p>
95+
<p className="font-semibold">Author:</p>
9696
<p>{article.authorName}</p>
9797
</span>
9898
</article>

0 commit comments

Comments
 (0)