Skip to content

Commit

Permalink
chore: HStack for Links
Browse files Browse the repository at this point in the history
  • Loading branch information
nick134-bit committed Oct 13, 2023
1 parent 99a0dbe commit ceb0146
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions components/Wallet/Modal/MobileNotSupportedModal.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react'

import {
HStack,
Image,
Link,
Modal,
Expand All @@ -18,16 +19,19 @@ function MobileNotSupportedModal() {
<ModalContent border="1px" borderColor="gray.200" padding="1" margin="4">
<ModalHeader>
<VStack>
<Text>Currently, only Leap's in-app browser is supported on mobile.</Text>
<Text>Currently, only Leaps in-app browser is supported on mobile.</Text>
<Link href="https://www.leapwallet.io/" isExternal>
<Image flex={'1'} maxBlockSize={'10'} src="https://assets-global.website-files.com/63af9e8fb337a641e2075c4f/63afa06f10dd572ce7252901_logo.svg" alt="Leap Logo" />
<Image flex={'1'} maxBlockSize={'12'} src="https://assets-global.website-files.com/63af9e8fb337a641e2075c4f/63afa06f10dd572ce7252901_logo.svg" alt="Leap Logo" />
</Link>
<Link href="https://play.google.com/store/apps/details?id=io.leapwallet.cosmos&utm_source=website&utm_medium=permanent-website&utm_campaign=permanent" isExternal>
<Image flex={'1'} maxBlockSize={'10'} src="https://assets-global.website-files.com/63af9e8fb337a641e2075c4f/63f7ac8b92f9f9c3bea96e10_Google_Play_Store_badge_EN.svg" alt="Google Play Store Badge" />
</Link>
<Link href="https://apps.apple.com/in/app/leap-cosmos/id1642465549/?utm_source=website&utm_medium=permanent-website&utm_campaign=permanent" isExternal>
<Image flex={'1'} maxBlockSize={'10'} src="https://assets-global.website-files.com/63af9e8fb337a641e2075c4f/63f7acd2acfc21f24c483fd9_appstroe.svg" alt="AppStore Badge" />
</Link></VStack>
<HStack>
<Link href="https://play.google.com/store/apps/details?id=io.leapwallet.cosmos&utm_source=website&utm_medium=permanent-website&utm_campaign=permanent" isExternal>
<Image flex={'1'} maxBlockSize={'12'} src="https://assets-global.website-files.com/63af9e8fb337a641e2075c4f/63f7ac8b92f9f9c3bea96e10_Google_Play_Store_badge_EN.svg" alt="Google Play Store Badge" />
</Link>
<Link href="https://apps.apple.com/in/app/leap-cosmos/id1642465549/?utm_source=website&utm_medium=permanent-website&utm_campaign=permanent" isExternal>
<Image flex={'1'} maxBlockSize={'12'} src="https://assets-global.website-files.com/63af9e8fb337a641e2075c4f/63f7acd2acfc21f24c483fd9_appstroe.svg" alt="AppStore Badge" />
</Link>
</HStack>
</VStack>
</ModalHeader>
</ModalContent>
</Modal>
Expand Down

0 comments on commit ceb0146

Please sign in to comment.