Skip to content

Commit

Permalink
feat: Reorder app links in Footer component
Browse files Browse the repository at this point in the history
The app links in the Footer component were reordered to prioritize the Web App link. This change ensures that the Web App link is displayed first in the list, followed by the iOS and Android links.
  • Loading branch information
xuelink committed Jun 20, 2024
1 parent 1b24501 commit b2ef9c1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib/components/organisms/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -140,25 +140,25 @@
<div>
<h3>Apps</h3>
<ul role="list">
<li>
<a href="https://app.langx.io" target="_blank">Web App</a>
</li>
<li>
<a
href="https://play.google.com/store/apps/details?id=tech.newchapter.languageXchange"
href="https://apps.apple.com/us/app/langx-practice-learn-succeed/id6474187141"
target="_blank"
>
Android
iOS
</a>
</li>
<li>
<a
href="https://apps.apple.com/us/app/langx-practice-learn-succeed/id6474187141"
href="https://play.google.com/store/apps/details?id=tech.newchapter.languageXchange"
target="_blank"
>
iOS
Android
</a>
</li>
<li>
<a href="https://app.langx.io" target="_blank">Web App</a>
</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit b2ef9c1

Please sign in to comment.