This commit is contained in:
2025-08-25 13:27:09 +02:00
parent 25920b5c52
commit aaeefb1a1c
28 changed files with 130 additions and 77 deletions

View File

@@ -62,7 +62,7 @@ export default function Boats() {
<div className="mx-auto grid max-w-7xl grid-cols-1 gap-x-8 gap-y-20 px-6 lg:px-8 xl:grid-cols-3">
<div className="mx-auto max-w-2xl lg:mx-0">
<h2 className="text-3xl font-bold tracking-tight text-gray-800 sm:text-4xl">Our team</h2>
<p className="mt-6 text-lg leading-8 text-gray-600">
<p className="mt-6 text-lg leading-8 text-gray-200">
Were a dynamic group of individuals who are passionate about what we do and dedicated to delivering the
best results for our clients.
</p>
@@ -82,7 +82,7 @@ export default function Boats() {
/>
</div>
<h3 className="mt-6 text-lg font-semibold leading-8 text-gray-800">{person.name}</h3>
<ul className="mt-4 text-base leading-7 text-gray-600 list-disc pl-5 space-y-1">
<ul className="mt-4 text-base leading-7 text-gray-200 list-disc pl-5 space-y-1">
{person.bio.map((item, index) => (
<li key={index}>{item}</li>
))}