import { Users, FlaskRound } from 'lucide-react'; const contributors = [ { name: 'MALOW', role: 'Testing', avatar: 'https://macrimi.github.io/ProxMenux/avatars/malow.png' }, { name: 'Segarra', role: 'Testing', avatar: 'https://macrimi.github.io/ProxMenux/avatars/segarra.png' }, { name: 'Aprilia', role: 'Testing', avatar: 'https://macrimi.github.io/ProxMenux/avatars/aprilia.png' } ]; export default function Contributors() { return (
{/* 🔹 Icon + Title */}

Contributors

{/* 🔹 Description */}

The ProxMenux project grows and thrives thanks to the contribution of its collaborators.

This is the well-deserved recognition of their work:

{/* 🔹 Contributors List */}
{contributors.map((contributor) => (
{contributor.name}

{contributor.name}

{contributor.role}

))}
{/* 🔹 Call to Action */}

Would you like to contribute? You can collaborate as a tester, developer, designer, or by sharing ideas and suggestions. Any contribution is welcome!

); }