diff --git a/bereal/send.py b/bereal/send.py index 75b6b0f..79de028 100644 --- a/bereal/send.py +++ b/bereal/send.py @@ -16,7 +16,7 @@ def sms(phone: str, link: str) -> None: try: client = Client(TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN) - message_body = f"Here is the link to your BeReal Wrapped!\n{link}" + message_body = f"Here is the link to your BeReal Wrapped!\n\n{link}" message = client.messages.create(body=message_body, from_=TWILIO_PHONE_NUMBER, to=phone) logger.info("Sent message to %s: %s", phone, message.sid) diff --git a/client/src/components/Form.tsx b/client/src/components/Form.tsx index e4ff532..0cd582d 100644 --- a/client/src/components/Form.tsx +++ b/client/src/components/Form.tsx @@ -271,9 +271,9 @@ const Footer: React.FC = () => {

BeReal. Recap.

- Create a recap video of your BeReals for 2022 or 2023. Only uses your - phone number and does not store any information. Videos are deleted - after 24 hours and only accessible by you! + Create a recap video of your BeReals. Only uses your phone number and + does not store any information. Videos are deleted after 24 hours and + only accessible by you!

If you get an error, refresh the page and try again. If errors persist, diff --git a/client/src/components/Processing.tsx b/client/src/components/Processing.tsx index f1cd114..1498156 100644 --- a/client/src/components/Processing.tsx +++ b/client/src/components/Processing.tsx @@ -98,16 +98,16 @@ const VideoProcessor: React.FC = (props: Props) => { return ( <> {taskId ? ( - <> -

+

+

Videos take around 10 minutes to generate. A download button will appear when ready, and you'll also receive a text message with the link.

-

Processing...

- +

Processing...

+
) : ( -

+

No task ID available. Refresh the page to try again.

)}