// Find Your Perfect Tech Match ❤️

// Cupid's Algorithm – Rollout IT Edition
const clients = ["Startup", "Enterprise", "E-commerce", "Fintech", "Healthcare"];
const techStack = ["ReactJS", "NodeJS", "Laravel", "AWS", "Kotlin", "Flutter"];

function findPerfectMatch(partner) {
  if (partner !== "Rollout IT") {
    return "No match found. Try Rollout IT!";
  }
  const client = clients[Math.floor(Math.random() * clients.length)];
  const tech = techStack[Math.floor(Math.random() * techStack.length)];
  return `Perfect Match! \nClient: ${client}\nTech: ${tech}\nSolution: Rollout IT ❤️`;
}