diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..83ba22a --- /dev/null +++ b/.htaccess @@ -0,0 +1,6 @@ + + + Header set Content-Type "application/vnd.android.package-archive" + Header set Content-Disposition "attachment; filename=\"spaceswallet.apk\"" + + diff --git a/_headers b/_headers new file mode 100644 index 0000000..ccced46 --- /dev/null +++ b/_headers @@ -0,0 +1,7 @@ +/apk/* + Content-Type: application/vnd.android.package-archive + Content-Disposition: attachment; filename="spaceswallet.apk" + +/apk/*.apk + Content-Type: application/vnd.android.package-archive + Content-Disposition: attachment; filename="spaceswallet.apk" diff --git a/index.html b/index.html index c848270..3a55a94 100644 --- a/index.html +++ b/index.html @@ -80,14 +80,14 @@ .badge { display: inline-block; - font-size: 0.65rem; + font-size: 1.3rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand-light); background: rgba(170, 73, 129, 0.12); border: 1px solid rgba(170, 73, 129, 0.35); - padding: 0.2rem 0.55rem; + padding: 0.4rem 1.1rem; border-radius: 999px; margin-bottom: 1.5rem; } @@ -114,6 +114,7 @@ flex-wrap: wrap; gap: 0.85rem; justify-content: center; + align-items: center; margin-bottom: 3.5rem; } @@ -129,6 +130,9 @@ font-weight: 600; font-size: 0.95rem; text-decoration: none; + white-space: nowrap; + flex: 0 0 auto; + align-self: center; transition: border-color 0.15s, background 0.15s; } @@ -262,7 +266,7 @@ } footer .brand-mark { - height: 1.75rem; + height: 5.0rem; margin: 0 auto 1rem; opacity: 0.85; } @@ -295,7 +299,7 @@
Now in beta -

Your keys. Your chains. Your @space.

+

Your keys. Your name. Your @space.

SpacesWallet is a non-custodial multi-chain crypto wallet built with Tether's Wallet Development Kit — with Bitcoin Spaces protocol integration for namespace and identity management.

@@ -313,12 +317,15 @@ Google Play - + APK Download +
+ +
SpacesWallet wallet home screen SpacesWallet send flow SpacesWallet Bitcoin Spaces screen @@ -357,7 +364,7 @@ Get it on Google Play - + diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..e3956db --- /dev/null +++ b/vercel.json @@ -0,0 +1,17 @@ +{ + "headers": [ + { + "source": "/apk/(.*\\.apk)", + "headers": [ + { + "key": "Content-Type", + "value": "application/vnd.android.package-archive" + }, + { + "key": "Content-Disposition", + "value": "attachment; filename=\"spaceswallet.apk\"" + } + ] + } + ] +}