Skip to content

Commit

Permalink
change footer social order
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght committed May 19, 2023
1 parent f0c4fb0 commit 96b453c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@

<footer class="w-full items-center justify-between space-y-5 pb-5 xl:flex xl:space-y-0">
<div class="flex flex-wrap justify-center gap-5 xl:block xl:space-x-5">
<SocialLink url={$socials.twitter} social="twitter" />
<SocialLink url={$socials.nostr} social="nostr" />
<SocialLink url={$socials.discord} social="discord" />
<SocialLink url={$socials.github} social="github" />
<SocialLink url={$socials.amboss} social="amboss" />
<SocialLink url={$socials.nostr} social="nostr" />
<SocialLink url={$socials.twitter} social="twitter" />
</div>
<div class="flex flex-wrap justify-center xl:block">
{#each links as link}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/+error.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
</div>

<footer class="flex flex-wrap justify-center gap-5 pb-5">
<SocialLink url={$socials.twitter} social="twitter" />
<SocialLink url={$socials.nostr} social="nostr" />
<SocialLink url={$socials.discord} social="discord" />
<SocialLink url={$socials.github} social="github" />
<SocialLink url={$socials.amboss} social="amboss" />
<SocialLink url={$socials.nostr} social="nostr" />
<SocialLink url={$socials.twitter} social="twitter" />
</footer>
</div>
</div>

0 comments on commit 96b453c

Please sign in to comment.