Skip to content

Commit

Permalink
fix logo reference
Browse files Browse the repository at this point in the history
  • Loading branch information
simenandre committed Jun 25, 2023
1 parent b3227dc commit 42ad4ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/routes/(default)/about/employee.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import type { WithContext, Person } from 'schema-dts';
import GitHubLogo from 'phosphor-svelte/lib/GitHubLogo';
import LinkedInLogo from 'phosphor-svelte/lib/LinkedInLogo';
import GithubLogo from 'phosphor-svelte/lib/GithubLogo';
import LinkedinLogo from 'phosphor-svelte/lib/LinkedinLogo';
import Metadata from '$components/metadata.svelte';
import Image from '$components/image.svelte';
Expand Down Expand Up @@ -59,10 +59,10 @@
<ul class="social-media-links">
{#each socialMedia as link}
{#if link.type == 'linkedin'}
<li><a href={link.url} target="_blank" rel="noopener"><LinkedInLogo /></a></li>
<li><a href={link.url} target="_blank" rel="noopener"><LinkedinLogo /></a></li>
{/if}
{#if link.type == 'github'}
<li><a href={link.url} target="_blank" rel="noopener"><GitHubLogo /></a></li>
<li><a href={link.url} target="_blank" rel="noopener"><GithubLogo /></a></li>
{/if}
{/each}
</ul>
Expand Down

0 comments on commit 42ad4ee

Please sign in to comment.