chore(apperances): Show only link for talks if available
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
parent
e9b07bc651
commit
5c9d27a92a
1 changed files with 6 additions and 0 deletions
|
@ -29,7 +29,13 @@ import appearances from "../data/appearances.json";
|
|||
appearances.speaking.map(appearance => (
|
||||
<div>
|
||||
<h3 class="flex justify-center">
|
||||
{
|
||||
appearance.url
|
||||
?
|
||||
<a href={appearance.url} class="flex text-center text-lg">🔗 {appearance.title}</a>
|
||||
:
|
||||
<span class="flex text-center text-lg">{appearance.title}</span>
|
||||
}
|
||||
</h3>
|
||||
<div class="flex justify-between items-center">
|
||||
<p>📅: {appearance.date}</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue