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] category: [foundation]
bio: IT-Telecom & Networking Engineer, having a great passion to learn more about new technologies. 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. 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/ linkedin: https://www.linkedin.com/in/atef-nazmy-2521b2134/
websites: https://threefold.tech websites: https://threefold.tech
image: ./atef_nazmy.jpg image: ./atef_nazmy.jpg

View File

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

View File

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

View File

@@ -21,6 +21,6 @@ countries:
cities: cities:
- Liège - Liège
private: 0 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: cities:
- Montreal - Montreal
private: 0 private: 0
title: Musician and mathematician contributing to the ThreeFold documentation title: Technical Writer
--- ---

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -59,16 +59,15 @@ export default async function PeoplePage() {
return ( return (
<div className=" py-24 sm:py-32"> <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-7xl px-6 lg:px-8">
<div className="mx-auto max-w-2xl lg:mx-0"> <div className="mx-auto max-w-3xl lg:mx-0">
<h2 className="text-4xl font-semibold tracking-tight text-pretty text-white sm:text-5xl">Our Team</h2> <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-400"> <p className="mt-6 text-lg/8 text-gray-600">
Were a dynamic group of individuals who are passionate about what we do and dedicated to delivering the 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.
best results for our clients.
</p> </p>
</div> </div>
<ul <ul
role="list" 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) => ( {people.map((person, index) => (
<li key={index}> <li key={index}>
@@ -80,7 +79,7 @@ export default async function PeoplePage() {
height={400} height={400}
/> />
<h3 className="mt-6 text-lg/8 font-semibold tracking-tight text-white">{person.name}</h3> <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> </li>
))} ))}
</ul> </ul>