mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
chore(web): use FUTO F-Droid repo in utilities (#30527)
Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
parent
0d7147dcec
commit
29e7ea5302
1 changed files with 4 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { appStoreBadge, BasicModal, fdroidBadge, playStoreBadge } from '@immich/ui';
|
||||
import { appStoreBadge, BasicModal, Constants, fdroidBadge, playStoreBadge } from '@immich/ui';
|
||||
import { t } from 'svelte-i18n';
|
||||
interface Props {
|
||||
onClose: () => void;
|
||||
|
|
@ -9,15 +9,15 @@
|
|||
|
||||
<BasicModal title={$t('app_download_links')} size="tiny" {onClose}>
|
||||
<div class="mx-auto flex max-w-50 flex-col gap-4">
|
||||
<a href="https://play.google.com/store/apps/details?id=app.alextran.immich" target="_blank" id="play-store-link">
|
||||
<a href={Constants.Get.Android} target="_blank" id="play-store-link">
|
||||
<img class="mt-2 w-full" alt="Get it on Google Play" src={playStoreBadge} />
|
||||
</a>
|
||||
|
||||
<a href="https://apps.apple.com/us/app/immich/id1613945652" target="_blank" id="app-store-link">
|
||||
<a href={Constants.Get.iOS} target="_blank" id="app-store-link">
|
||||
<img class="mt-2 w-full" alt="Download on the App Store" src={appStoreBadge} />
|
||||
</a>
|
||||
|
||||
<a href="https://f-droid.org/packages/app.alextran.immich/" target="_blank" id="fdroid-link">
|
||||
<a href={Constants.Get.FDroid} target="_blank" id="fdroid-link">
|
||||
<img class="mt-2 w-full" alt="Get it on F-Droid" src={fdroidBadge} />
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue