@@ -17,15 +18,22 @@ function GetWallet() {
content={
}
/>
+ icon={btnSteal ? 'google-play-yellow' : 'google-play'}
+ link="https://play.google.com/store/apps/details?id=io.horizontalsystems.bankwallet"
+ yellow={!btnSteal}
+ steal20={btnSteal}
+ newTab />
+ icon={btnSteal ? 'app-store-yellow' : 'app-store'}
+ link="https://itunes.apple.com/app/bank-bitcoin-wallet/id1447619907?ls=1&mt=8"
+ yellow={!btnSteal}
+ steal20={btnSteal}
+ newTab />
+
diff --git a/src/components/Icon/Icon.js b/src/components/Icon/Icon.js
index f92046f..29c62a0 100644
--- a/src/components/Icon/Icon.js
+++ b/src/components/Icon/Icon.js
@@ -20,8 +20,12 @@ const iconComponent = name => {
// Buttons
case 'google-play':
return image('/images/icon/google-play.svg')
+ case 'google-play-yellow':
+ return image('/images/icon/google-play-yellow.svg')
case 'app-store':
return image('/images/icon/app-store.svg')
+ case 'app-store-yellow':
+ return image('/images/icon/app-store-yellow.svg')
case 'f-droid':
return image('/images/icon/f-droid.svg')
case 'download':
diff --git a/src/components/Wc/Wc.js b/src/components/Wc/Wc.js
new file mode 100644
index 0000000..65e3bde
--- /dev/null
+++ b/src/components/Wc/Wc.js
@@ -0,0 +1,46 @@
+import React from 'react'
+
+import Container from '../Container'
+import GetWalletActions from '../GetWallet/GetWalletActions'
+import Icon from '../Icon'
+
+import './Wc.scss'
+
+function Wc() {
+ const urlParams = new URLSearchParams(window.location.search)
+ const uri = urlParams.get('uri')
+ const url = `unstoppable.money://wc?uri=${encodeURIComponent(uri)}`
+
+ return (
+
+
+
+
+
+
+
+
+ Don’t have the app?
+
+
+
+
+
+
+
+ )
+}
+
+export default Wc
diff --git a/src/components/Wc/Wc.scss b/src/components/Wc/Wc.scss
new file mode 100644
index 0000000..ee9914a
--- /dev/null
+++ b/src/components/Wc/Wc.scss
@@ -0,0 +1,21 @@
+@import "../../scss/utils";
+
+.Wc {
+ padding: 100px 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.Wc-title {
+ padding-top: 40px;
+ padding-bottom: 36px;
+ font-weight: normal;
+ font-size: 48px;
+ line-height: 65px;
+ color: $light-steal;
+}
+
+.Wc-actions {
+
+}