MapComplete/app/AppIndex.svelte

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
580 B
Svelte
Raw Normal View History

<script lang="ts">
2025-02-10 02:04:58 +01:00
import { DownloadIcon } from "@rgossiaux/svelte-heroicons/solid"
</script>
<div class="m-8 flex flex-col">
2025-02-10 02:04:58 +01:00
<h1>MapComplete Android App</h1>
2025-02-10 02:04:58 +01:00
MapComplete is available as Android App as direct download. We are working on publishing this in
the play store and on FDroid too.
2025-02-10 02:04:58 +01:00
<a
class="button primary flex justify-center"
href="https://app.mapcomplete.org/mapcomplete-latest.apk"
>
<DownloadIcon class="h-8 w-8" />
Download the latest version
</a>
<a class="button" href="https://mapcomplete.org">Go back to mapcomplete</a>
</div>