feat: Display Bandcamp/Nugs links on show page setlist
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
This commit is contained in:
parent
1f29cdf290
commit
08587f21f9
1 changed files with 22 additions and 0 deletions
|
|
@ -199,6 +199,28 @@ export default async function ShowDetailPage({ params }: { params: Promise<{ id:
|
||||||
<Youtube className="h-3.5 w-3.5" />
|
<Youtube className="h-3.5 w-3.5" />
|
||||||
</span>
|
</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">></span>}
|
{perf.segue && <span className="ml-1 text-muted-foreground">></span>}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue