Skip to content

Commit

Permalink
feat: minor copy tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfromyeg committed Jan 7, 2024
1 parent e12ecad commit 48c8642
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bereal/send.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions client/src/components/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ const Footer: React.FC = () => {
<div className="flex flex-col items-center justify-center p-8 bg-white rounded-lg shadow-md max-w-md w-full mx-auto my-6">
<h1 className="text-4xl font-bold text-center mb-3">BeReal. Recap.</h1>
<p className="text-center max-w-sm mb-3">
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!
</p>
<p className="text-center max-w-sm mb-6">
If you get an error, refresh the page and try again. If errors persist,
Expand Down
10 changes: 5 additions & 5 deletions client/src/components/Processing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,16 @@ const VideoProcessor: React.FC<Props> = (props: Props) => {
return (
<>
{taskId ? (
<>
<p className="text-center">
<div>
<p className="text-center max-w-sm mb-6">
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.
</p>
<p className="text-center">Processing...</p>
</>
<p className="text-center mb-6">Processing...</p>
</div>
) : (
<p className="text-center">
<p className="text-center mb-6">
No task ID available. Refresh the page to try again.
</p>
)}
Expand Down

0 comments on commit 48c8642

Please sign in to comment.