From adb28cad4fb9872dbe1be240c9f24a5d4cdd9321 Mon Sep 17 00:00:00 2001 From: Israel Abebe Date: Mon, 25 Sep 2023 11:15:50 +0300 Subject: [PATCH 1/2] Update CodeSnippetSection.tsx --- web/components/home/CodeSnippetSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/home/CodeSnippetSection.tsx b/web/components/home/CodeSnippetSection.tsx index 6323445..39c3298 100644 --- a/web/components/home/CodeSnippetSection.tsx +++ b/web/components/home/CodeSnippetSection.tsx @@ -31,7 +31,7 @@ export default function CodeSnippetSection() { align={'center'} // h={'100%'} src={ - 'https://ik.imagekit.io/vernu/textbee/Screenshot_2023-06-18_at_11.30.25_AM.png?updatedAt=1687077054749' + 'https://ik.imagekit.io/vernu/textbee/Screenshot%202023-09-25%20at%2011.13.30%20AM.png?updatedAt=1695629672884' } borderRadius={'lg'} /> From 8594694f66b212d8f90f00d005dc8c4a929f2e97 Mon Sep 17 00:00:00 2001 From: Israel Abebe Date: Mon, 25 Sep 2023 11:16:25 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0f8243..928a1a4 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ from their application via a REST API. It utilizes android phones as SMS gateway const API_KEY = 'YOUR_API_KEY'; const DEVICE_ID = 'YOUR_DEVICE_ID'; -await axios.post(`https://api.textbee.vernu.dev/api/v1/devices/${DEVICE_ID}/sendSMS?apiKey=${API_KEY}`, { +await axios.post(`https://api.textbee.vernu.dev/api/v1/gateway/devices/${DEVICE_ID}/sendSMS?apiKey=${API_KEY}`, { receivers: [ '+251912345678' ], smsBody: 'Hello World!', })