mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 09:20:00 +02:00
chore(about): update title
This commit is contained in:
parent
4678f29a13
commit
0a0777ca33
2 changed files with 8 additions and 3 deletions
|
@ -150,7 +150,12 @@
|
||||||
"mainTeam": {
|
"mainTeam": {
|
||||||
"title": "Main Team",
|
"title": "Main Team",
|
||||||
"description": "This list shows the main team members who are working hard to bring you the best browsing experience.",
|
"description": "This list shows the main team members who are working hard to bring you the best browsing experience.",
|
||||||
|
"subTitle": {
|
||||||
|
"browser": "Browser",
|
||||||
|
"website": "Website and Branding"
|
||||||
|
},
|
||||||
"members": {
|
"members": {
|
||||||
|
|
||||||
"browser": {
|
"browser": {
|
||||||
"mauro": {
|
"mauro": {
|
||||||
"name": "Mauro B.",
|
"name": "Mauro B.",
|
||||||
|
@ -201,7 +206,7 @@
|
||||||
},
|
},
|
||||||
"jace": {
|
"jace": {
|
||||||
"name": "Jace",
|
"name": "Jace",
|
||||||
"description": "Website and branding",
|
"description": "Contributes to website design and branding",
|
||||||
"link": "https://x.com/JaceThings"
|
"link": "https://x.com/JaceThings"
|
||||||
},
|
},
|
||||||
"canoa": {
|
"canoa": {
|
||||||
|
|
|
@ -38,7 +38,7 @@ const {
|
||||||
<div class="flex flex-col gap-6">
|
<div class="flex flex-col gap-6">
|
||||||
{Object.entries(about.mainTeam.members).map(([team, members]) => (
|
{Object.entries(about.mainTeam.members).map(([team, members]) => (
|
||||||
<div class="flex flex-col gap-2">
|
<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">
|
<ul class="flex flex-col gap-2">
|
||||||
{Object.entries(members).map(([_key, member]) => (
|
{Object.entries(members).map(([_key, member]) => (
|
||||||
<li class="text-sm">
|
<li class="text-sm">
|
||||||
|
@ -49,7 +49,7 @@ const {
|
||||||
) : (
|
) : (
|
||||||
<strong class="font-bold">{member.name}</strong>
|
<strong class="font-bold">{member.name}</strong>
|
||||||
)}
|
)}
|
||||||
<span class="opacity-80"> : {member.description}</span>
|
<span class="opacity-80">: {member.description}</span>
|
||||||
</li>
|
</li>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue