chore(about): update title

This commit is contained in:
Shintaro Jokagi
2025-05-15 23:26:40 +12:00
parent 4678f29a13
commit 0a0777ca33
2 changed files with 8 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ const {
<div class="flex flex-col gap-6">
{Object.entries(about.mainTeam.members).map(([team, members]) => (
<div class="flex flex-col gap-2">
<div class="text-3xl font-semibold">{team.charAt(0).toUpperCase() + team.slice(1)} Team</div>
<div class="text-3xl font-semibold">{about.mainTeam.subTitle[team as keyof typeof about.mainTeam.subTitle]}</div>
<ul class="flex flex-col gap-2">
{Object.entries(members).map(([_key, member]) => (
<li class="text-sm">
@@ -49,7 +49,7 @@ const {
) : (
<strong class="font-bold">{member.name}</strong>
)}
<span class="opacity-80"> : {member.description}</span>
<span class="opacity-80">: {member.description}</span>
</li>
))}
</ul>