export default function RecommendationEngine({ score, category, location }) {
// Logic: If Hair Score < 50, show hair fall products and clinics
return (
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 mt-10">
<div className="border p-4 rounded-xl">
<h3 className="text-lg font-bold">Recommended Specialists Near {location}</h3>
{/* Map through clinics from Supabase */}
</div>
<div className="border p-4 rounded-xl">
<h3 className="text-lg font-bold">Ayurvedic Essentials</h3>
{/* Affiliate Product Cards (Amazon/HealthKart/Direct) */}
</div>
</div>
);
}