refactor: standardize job titles and improve team page layout

This commit is contained in:
2025-10-17 17:17:07 +02:00
parent d76ebc305e
commit a9951b8cec
17 changed files with 22 additions and 29 deletions

View File

@@ -6,7 +6,7 @@ memberships: [tech]
category: [foundation]
bio: IT-Telecom & Networking Engineer, having a great passion to learn more about new technologies.
excerpt: I Believe that ThreeFold Foundation Drives the world to be Better and Greener.
title: IT-Telecom & Networking Engineer
title: Network Engineer
linkedin: https://www.linkedin.com/in/atef-nazmy-2521b2134/
websites: https://threefold.tech
image: ./atef_nazmy.jpg

View File

@@ -24,7 +24,6 @@ cities:
- Cairo
private: 0
title: >-
Experienced Office Manager with a demonstrated history of working in IT
industry
Administrative Manager
---

View File

@@ -29,7 +29,6 @@ cities:
- Lochristi
private: 0
title: >-
In order to have a nice planet to live on for the next decades, we need to
preserve what we have now
Software Engineer
---

View File

@@ -21,6 +21,6 @@ countries:
cities:
- Liège
private: 0
title: 'C, python and nodejs developer, Gentoo user, Linux and Music addict'
title: 'Software Engineer'
---

View File

@@ -24,6 +24,6 @@ countrie:
cities:
- Montreal
private: 0
title: Musician and mathematician contributing to the ThreeFold documentation
title: Technical Writer
---

View File

@@ -29,7 +29,6 @@ cities:
- Cairo
private: 0
title: >-
Nayer is a passionate about peoples development, and that we can be the
change we want to see
Project Coordinator
---

View File

@@ -20,6 +20,6 @@ countries:
cities:
- Cairo
private: 0
title: 'Golang, Typescript'
title: Software Engineer
---

View File

@@ -22,6 +22,6 @@ countries:
cities:
- Cairo
private: 0
title: Passionate DevOps Engineer
title: DevOps Engineer
---

View File

@@ -24,6 +24,6 @@ countries:
- Belgium
cities: []
private: 0
title: Peter is HR-manager and Financial Advisor For TF Tech
title: Financial Advisor
---

View File

@@ -24,6 +24,5 @@ countries:
cities:
- Cairo
private: 0
title: Ramez has about 10 years of experience in CloudComputing software
---
title: Quality Assurance

View File

@@ -24,7 +24,6 @@ cities:
- Alexandria
private: 0
title: >-
I am a software engineer, always looking for new opportunties and ways to
improve
Software Engineer
---

View File

@@ -29,6 +29,6 @@ countries:
cities:
- Lochristi
private: 0
title: People person with a heart for equality and tech nerds
title: Product Manager
---

View File

@@ -23,6 +23,6 @@ countries:
cities:
- Cairo
private: 0
title: I believe in a world where everyone can be happy
title: Software Engineer
---

View File

@@ -26,7 +26,6 @@ cities:
- Cairo
private: 0
title: >-
Sameh is a passionate software engineer with a talent for problem-solving and
an unwavering commitment to quality
Software Engineer
---

View File

@@ -24,6 +24,6 @@ countries:
cities:
- Cairo
private: 0
title: My biggest passion is learning about new technologies
title: Software Engineer
---

View File

@@ -30,7 +30,7 @@ countries:
cities:
- Eugene
private: 0
title: Technology nerd and cross discipline creator
title: Community Manager
---
---

View File

@@ -59,16 +59,15 @@ export default async function PeoplePage() {
return (
<div className=" py-24 sm:py-32">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto max-w-2xl lg:mx-0">
<h2 className="text-4xl font-semibold tracking-tight text-pretty text-white sm:text-5xl">Our Team</h2>
<p className="mt-6 text-lg/8 text-gray-400">
Were a dynamic group of individuals who are passionate about what we do and dedicated to delivering the
best results for our clients.
<div className="mx-auto max-w-3xl lg:mx-0">
<h2 className="text-4xl font-medium tracking-tight text-pretty text-white sm:text-5xl">Our Team</h2>
<p className="mt-6 text-lg/8 text-gray-600">
Our team brings together +30 years of experience in cloud automation, Internet storage, and infrastructure services. We are a passionate group on a collective mission to make the world a better place for the people around us.
</p>
</div>
<ul
role="list"
className="mx-auto mt-20 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-14 sm:grid-cols-2 lg:mx-0 lg:max-w-none xl:grid-cols-4"
className="mx-auto mt-20 grid max-w-2xl grid-cols-1 gap-x-8 gap-y-14 sm:grid-cols-2 lg:mx-0 lg:max-w-none xl:grid-cols-5"
>
{people.map((person, index) => (
<li key={index}>
@@ -80,7 +79,7 @@ export default async function PeoplePage() {
height={400}
/>
<h3 className="mt-6 text-lg/8 font-semibold tracking-tight text-white">{person.name}</h3>
<p className="text-base/7 text-gray-300">{person.title}</p>
<p className="text-base/7 text-gray-600">{person.title}</p>
</li>
))}
</ul>