feat: Display Bandcamp/Nugs links on show page setlist
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-23 15:57:37 -08:00
parent 1f29cdf290
commit 08587f21f9

View file

@ -199,6 +199,28 @@ export default async function ShowDetailPage({ params }: { params: Promise<{ id:
<Youtube className="h-3.5 w-3.5" />
</span>
)}
{perf.bandcamp_link && (
<a
href={perf.bandcamp_link}
target="_blank"
rel="noopener noreferrer"
className="text-[#629aa9] hover:text-[#4a7a89]"
title="Listen on Bandcamp"
>
<Disc className="h-3.5 w-3.5" />
</a>
)}
{perf.nugs_link && (
<a
href={perf.nugs_link}
target="_blank"
rel="noopener noreferrer"
className="text-[#ff6b00] hover:text-[#cc5500]"
title="Listen on Nugs.net"
>
<PlayCircle className="h-3.5 w-3.5" />
</a>
)}
{perf.segue && <span className="ml-1 text-muted-foreground">&gt;</span>}
</div>