De CV à décision RH en 10 secondes

Smart Profile

L'intelligence artificielle au service du recrutement santé. Analyse complète des profils soignants, Trust Score™ instantané, recommandation RH et matching intelligent avec vos besoins.

CV PDF
Extraction IA
Smart Profile™
Trust Score™
Décision RH

Déposez le CV du candidat

Déposez un CV PDF

ou cliquez pour parcourir

Formats acceptés: PDF, DOC, DOCX

Profil complet du candidat

Informations
Compétences
Soft Skills
Disponibilité
Conformité
// Script simple pour simuler la navigation des onglets const tabs = document.querySelectorAll('.tab'); tabs.forEach(tab => { tab.addEventListener('click', () => { tabs.forEach(t => t.classList.remove('active')); tab.classList.add('active'); }); }); // Simulation d'upload const fileInput = document.getElementById('file-input'); fileInput.addEventListener('change', (e) => { if (e.target.files.length > 0) { alert('Fichier "' + e.target.files[0].name + '" sélectionné avec succès !'); } });