Browse Source

chore(web): update app download link

pull/8/head
isra el 2 years ago
parent
commit
c78427db7b
  1. 2
      README.md
  2. 2
      web/components/Footer.tsx
  3. 2
      web/components/landing/DownloadAppSection.tsx
  4. 2
      web/components/landing/howItWorksContent.ts
  5. 2
      web/next.config.js

2
README.md

@ -11,7 +11,7 @@ from their application via a REST API. It utilizes android phones as SMS gateway
## Usage ## Usage
1. Go to [textbee.dev](https://textbee.dev) and register or login with your account 1. Go to [textbee.dev](https://textbee.dev) and register or login with your account
2. Install the app on your android phone from [textbee.dev/android](https://textbee.dev/android)
2. Install the app on your android phone from [dl.textbee.dev](https://dl.textbee.dev)
3. Open the app and grant the permissions for SMS 3. Open the app and grant the permissions for SMS
4. Go to [textbee.dev/dashboard](https://textbee.dev/dashboard) and click register device/ generate API Key 4. Go to [textbee.dev/dashboard](https://textbee.dev/dashboard) and click register device/ generate API Key
5. Scan the QR code with the app or enter the API key manually 5. Scan the QR code with the app or enter the API key manually

2
web/components/Footer.tsx

@ -25,7 +25,7 @@ export default function Footer() {
<Stack direction={'row'} spacing={6}> <Stack direction={'row'} spacing={6}>
<Link href='/'>Home</Link> <Link href='/'>Home</Link>
<Link href='/dashboard'>Dashboard</Link> <Link href='/dashboard'>Dashboard</Link>
<Link href='/android'>Download App</Link>
<Link href='https://dl.textbee.dev' target='_blank'> Download App</Link>
<Link href='https://github.com/vernu/textbee'>Github</Link> <Link href='https://github.com/vernu/textbee'>Github</Link>
</Stack> </Stack>
</Container> </Container>

2
web/components/landing/DownloadAppSection.tsx

@ -60,7 +60,7 @@ export default function DownloadAppSection() {
Unlock the power of messaging with our open-source Android SMS Unlock the power of messaging with our open-source Android SMS
Gateway. Gateway.
</chakra.p> </chakra.p>
<a href='/android' target='_blank'>
<a href='https://dl.textbee.dev' target='_blank'>
<Button <Button
/* flex={1} */ /* flex={1} */
px={4} px={4}

2
web/components/landing/howItWorksContent.ts

@ -1,6 +1,6 @@
export const howItWorksContent = [ export const howItWorksContent = [
{ {
title: 'Step 1: Download The Android App from textbee.dev/android',
title: 'Step 1: Download The Android App from dl.textbee.dev',
description: description:
'', '',
}, },

2
web/next.config.js

@ -10,7 +10,7 @@ const nextConfig = {
return [ return [
{ {
source: '/android', source: '/android',
destination: 'https://appdistribution.firebase.dev/i/1439f7af2d1e8e8e',
destination: 'https://dl.textbee.dev',
permanent: false, permanent: false,
}, },
] ]

Loading…
Cancel
Save