Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kaarmu committed Sep 16, 2024
1 parent 5563765 commit 20854dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@
<Section title="Organizers">
<div class="flex flex-col md:flex-row items-start md:items-center justify-evenly space-y-4 md:space-y-0 md:space-x-8 px-4 mx-auto">
<Contact
name="Kaj Munhoz Arfvidsson"
affiliation="KTH Royal Institute of Technology"
email="[email protected]"
image="https://www.kth.se/files/avatar/kajarf"/>
name="Mohammad H. Mamduhi"
affiliation="University of Alberta"
email="[email protected]"
image="https://ieee-itsc.org/2024/wp-content/uploads/sites/3/2024/03/Mamduhi-150x150.png"/>
<Contact
name="Ehsan Hashemi"
affiliation="University of Alberta"
email="[email protected]"
image="https://apps.ualberta.ca/directory/person/profile_photo/ehashemi"/>
image="https://ieee-itsc.org/2024/wp-content/uploads/sites/3/2024/03/hashemi-768x768.png"/>
</div>
</Section>

Expand Down
4 changes: 3 additions & 1 deletion src/routes/Contact.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script>
export let name;
export let affiliation;
export let email;
export let email = "";
export let image;
</script>

Expand All @@ -14,6 +14,8 @@
<div class="ml-3">
<p class="text-l font-medium text-gray-700 group-hover:text-gray-900">{name}</p>
<p class="text-xs font-medium text-gray-500 group-hover:text-gray-700">{affiliation}</p>
{#if email.length > 0}
<p class="text-xs font-medium text-gray-500 group-hover:text-gray-700">{email}</p>
{/if}
</div>
</div>

0 comments on commit 20854dc

Please sign in to comment.