Skip to content

Commit a77e191

Browse files
committed
Add other people homepage
1 parent 36d8e02 commit a77e191

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

app/people/page.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ function ExpandOtherPeople({
5959
}
6060

6161
function ExpandOtherPerson(person: Person) {
62+
if (person.homepage) {
63+
return (
64+
<li key={person.name}>
65+
<Link href={person.homepage}>{person.name}</Link>
66+
</li>
67+
);
68+
}
6269
return <li key={person.name}>{person.name}</li>;
6370
}
6471

0 commit comments

Comments
 (0)