Skip to content

Commit

Permalink
feat(landing): google play icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed May 9, 2023
1 parent 9f1f0d0 commit 66359ab
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Binary file added packages/app/public/google-play-badge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions packages/app/src/pages/Landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@
<IconAccess class="w-6 h-6" />
</button>
</div>
<a
v-motion
:initial="{ opacity: 0 }"
:enter="{ opacity: 1, transition: { delay: 500 } }"
class="absolute bottom-0 right-35"
href="https://play.google.com/store/apps/details?id=io.betterwrite.twa&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1"
><img
alt="Get it on Google Play"
width="200"
height="100"
src="/google-play-badge.png"
/></a>
<a
v-motion
:initial="{ opacity: 0 }"
Expand Down Expand Up @@ -103,6 +115,7 @@
<script setup lang="ts">
import VTypical from 'vue-typical'
import { useLanding } from '@/use/landing'
import { useUtils } from '@/use/utils'
import { useI18n } from 'vue-i18n'
import { watch, ref } from 'vue'
import { useRouter } from 'vue-router'
Expand All @@ -114,6 +127,7 @@
const { t } = useI18n()
const router = useRouter()
const plugin = usePlugin()
const utils = useUtils()
plugin.emit('call-landing-created')
Expand Down

0 comments on commit 66359ab

Please sign in to comment.