{#await getJson('/json/me.json')}
{:then info}
{toasts.add({ title: 'Welcome', duration: 5000, type: 'success', placement: 'bottom-center', showProgress: true })}
{info.name}
{info.job_title}
{@html info.about}
{@html info.location}
{#each info.skills as skill}
{skill.name}
About {skill.name}
{skill.about}
{skill.link}
{/each}
{:catch}
{toasts.add({ title: 'Error', description: 'There was an error loading static site data', duration: 0, placement: 'bottom-center', showProgress: true })}
{/await}