sztucznainteligencjadlafirm/components/Team.tsx
Adrian Miesikowski a10d92abac first commit
2026-02-10 13:34:42 +01:00

34 lines
1.3 KiB
TypeScript

import { UserIcon } from "@/components/Icons";
export default function Team() {
const members = [
{ name: "Jan Kowalski", role: "CEO" },
{ name: "Anna Nowak", role: "CTO" },
{ name: "Piotr Wiśniewski", role: "Lead Developer" },
];
return (
<section className="py-20 px-4 bg-gray-950">
<div className="max-w-6xl mx-auto">
<div className="text-center mb-14">
<h2 className="text-4xl font-bold text-white mb-4">Nasz zespół</h2>
<p className="text-gray-400 text-lg">Ludzie za SZMYT AI Labs</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-3 gap-6 max-w-4xl mx-auto">
{members.map((m) => (
<div key={m.name} className="bg-gray-800 border border-gray-700 rounded-xl p-6 text-center">
<div className="w-24 h-24 mx-auto mb-4 rounded-full bg-gray-700 border-2 border-gray-600 flex items-center justify-center">
<div className="w-12 h-12 text-gray-500">
<UserIcon />
</div>
</div>
<h3 className="text-lg font-semibold text-white">{m.name}</h3>
<p className="text-cyan-400 text-sm mt-1">{m.role}</p>
</div>
))}
</div>
</div>
</section>
);
}