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

@@ -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>