Merge pull request 'fix(legal): opt-in page spacing' (#21) from tanweer919/lynkeduppro-crm:feat/login-methods into goutamnextflow

This commit is contained in:
2026-07-13 09:30:18 +00:00
+9 -9
View File
@@ -45,9 +45,9 @@ export default function SmsOptInPage() {
{done ? (
<div className="optin-done" role="status">
<strong>You&apos;re signed up.</strong> We&apos;ll text account and service
messages to {phone}. Reply <strong>STOP</strong> at any time to unsubscribe, or{" "}
<strong>HELP</strong> for help.
<strong>You&apos;re signed up.</strong>{" "}We&apos;ll text account and service
messages to {phone}. Reply <strong>STOP</strong>{" "}at any time to unsubscribe,
or <strong>HELP</strong>{" "}for help.
</div>
) : (
<form className="optin-card" onSubmit={onSubmit}>
@@ -90,8 +90,8 @@ export default function SmsOptInPage() {
<p className="optin-fine">
Message frequency varies. Message and data rates may apply. Reply{" "}
<strong>HELP</strong> for help or <strong>STOP</strong> to cancel at any time.
Carriers are not liable for delayed or undelivered messages.
<strong>HELP</strong>{" "}for help or <strong>STOP</strong>{" "}to cancel at any
time. Carriers are not liable for delayed or undelivered messages.
</p>
</form>
)}
@@ -106,9 +106,9 @@ export default function SmsOptInPage() {
<h2>How to opt out or get help</h2>
<p>
Reply <strong>STOP</strong> to any message to unsubscribe you&apos;ll get one
confirmation and no further texts. Reply <strong>HELP</strong> for help, or contact
us at <a href={`mailto:${SUPPORT_EMAIL}`}>{SUPPORT_EMAIL}</a>
Reply <strong>STOP</strong>{" "}to any message to unsubscribe you&apos;ll get one
confirmation and no further texts. Reply <strong>HELP</strong>{" "}for help, or
contact us at <a href={`mailto:${SUPPORT_EMAIL}`}>{SUPPORT_EMAIL}</a>
{SMS_SENDER ? <> or {SMS_SENDER}</> : null}. Messages are sent from {COMPANY}.
</p>
@@ -118,7 +118,7 @@ export default function SmsOptInPage() {
We do not sell, rent, or share your mobile phone number or your SMS opt-in
consent with any third parties or affiliates for their marketing purposes.
</strong>{" "}
See our <Link href="/privacy">Privacy Policy</Link> for full details.
See our <Link href="/privacy">Privacy Policy</Link>{" "}for full details.
</p>
</main>
);