Skip to content

Commit

Permalink
Merge pull request #116 from JuliaCon/lk-addYT
Browse files Browse the repository at this point in the history
Update LiveTalksPlaceholder.tsx
  • Loading branch information
twavv committed Feb 4, 2021
2 parents 42d5525 + cacec97 commit ee04294
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/components/live/LiveTalksPlaceholder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,20 @@ export const LiveTalksPlaceholder = () => {
case isBeforeConference:
return "The conference hasn't started yet.";
case isAfterConference:
return "The conference is now over. Thank you to everyone who made this JuliaCon awesome!";
return (
<>
The conference is now over. Thank you to everyone who made this
JuliaCon awesome! Visit{" "}
<a
href={
"https://www.youtube.com/playlist?list=PLP8iPy9hna6Tl2UHTrm4jnIYrLkIcAROR"
}
>
the Julia Language's YouTube
</a>{" "}
to watch all of the conference's talks, workshops, and keynotes.
</>
);
case data?.talks?.length === 0:
return "There are no talks scheduled for today.";
case dayHasEnded:
Expand Down

1 comment on commit ee04294

@vercel
Copy link

@vercel vercel bot commented on ee04294 Feb 4, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.