Files
matheoguilbert.fr/components/sections/ProjectTechnologies.tsx
T
2026-04-16 10:47:28 +02:00

22 lines
632 B
TypeScript

type props = {
technologies: string[];
};
export function ProjectTechnologies({ technologies }: props) {
return (
<section className="pb-16">
<p className="mb-4 text-sm text-neutral-500">Technologies</p>
<div className="flex flex-wrap gap-3">
{technologies.map((tech) => (
<span
key={tech}
className="rounded-full bg-brand-brown px-4 py-2 text-sm text-white"
>
{tech}
</span>
))}
</div>
</section>
);
}