Wire Bandcamp into AI recommendations - prioritize indie artists, attach Bandcamp links to results

This commit is contained in:
root
2026-03-30 23:42:03 -05:00
parent dd4df6a070
commit 37fccc6eef
9 changed files with 62 additions and 20 deletions

View File

@@ -61,25 +61,25 @@ export default function RecommendationCard({ recommendation, onToggleSave, savin
/>
</button>
{recommendation.spotify_url && (
{recommendation.bandcamp_url ? (
<a
href={recommendation.spotify_url}
href={recommendation.bandcamp_url}
target="_blank"
rel="noopener noreferrer"
className="p-2 rounded-full bg-green-50 text-green-600 hover:bg-green-100 transition-colors"
title="Open in Spotify"
className="p-2 rounded-full bg-amber-50 text-amber-700 hover:bg-amber-100 transition-colors"
title="Listen on Bandcamp"
>
<ExternalLink className="w-4 h-4" />
</a>
) : (
<Link
to={`/listen?q=${encodeURIComponent(`${recommendation.artist} ${recommendation.title}`)}`}
className="p-2 rounded-full bg-purple-50 text-purple-400 hover:bg-purple-100 hover:text-purple transition-colors"
title="Find on Bandcamp"
>
<Headphones className="w-4 h-4" />
</Link>
)}
<Link
to={`/listen?q=${encodeURIComponent(`${recommendation.artist} ${recommendation.title}`)}`}
className="p-2 rounded-full bg-purple-50 text-purple-400 hover:bg-purple-100 hover:text-purple transition-colors"
title="Find on Bandcamp"
>
<Headphones className="w-4 h-4" />
</Link>
</div>
</div>
</div>