Skip to content

Commit

Permalink
Merge pull request #52 from ThatConference/cs/heroLinks
Browse files Browse the repository at this point in the history
fix: upnext event card links
  • Loading branch information
theClarkSell committed Sep 17, 2023
2 parents 6afea68 + b9509ac commit 0db654a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<div class="pt-2 text-base font-bold leading-6 sm:text-lg sm:leading-7">
{#if dayjs().isSameOrAfter(dayjs(event.ticketsOnSaleFrom))}
<p class="font-extrabold text-that-red">
<a href={`/events/${event.slug}/tickets`} class="hover:text-thatBlue-500">
<a href={`/${event.slug}/tickets`} class="hover:text-thatBlue-500">
Tickets on sale now!
</a>
</p>
Expand All @@ -45,15 +45,15 @@
</p>
{/if}
<p>
<a href={`/events/${event.slug}/schedule`} class="hover:text-thatBlue-500">
<a href={`/${event.slug}/schedule`} class="hover:text-thatBlue-500">
See the full schedule &rarr;
</a>
</p>
</div>
</div>

<div class="flex flex-col justify-center pt-12">
<ActionLink href={`/events/${event.slug}`}>Conference Details and Tickets</ActionLink>
<ActionLink href={`/${event.slug}`}>Conference Details and Tickets</ActionLink>
</div>
</div>
</div>
Expand Down

0 comments on commit 0db654a

Please sign in to comment.