mirror of
https://github.com/supabase/supabase.git
synced 2026-05-11 02:20:29 +08:00
* docs: state that whatsapp is only supported for Twilio * docs: update format in callout * docs: include twilio verify * fixing capitalization --------- Co-authored-by: Brian B (theOtherBrian1) <brian@supabase.io>
28 lines
809 B
TypeScript
28 lines
809 B
TypeScript
import Link from 'next/link'
|
|
import { Admonition } from 'ui-patterns/admonition'
|
|
|
|
const CostWarning = () => (
|
|
<Admonition type="warning">
|
|
<p>
|
|
To keep SMS sending costs under control, make sure you adjust your project's rate limits
|
|
and{' '}
|
|
<Link href="/guides/auth/auth-captcha">
|
|
<u>configure CAPTCHA</u>
|
|
</Link>
|
|
. See the{' '}
|
|
<Link href="/guides/platform/going-into-prod">
|
|
<u>Production Checklist</u>
|
|
</Link>{' '}
|
|
to learn more.
|
|
</p>
|
|
<br />
|
|
<p>
|
|
Some countries have special regulations for services that send SMS messages to users, (e.g
|
|
India's TRAI DLT regulations). Remember to look up and follow the regulations of
|
|
countries where you operate.
|
|
</p>
|
|
</Admonition>
|
|
)
|
|
|
|
export { CostWarning }
|