Skip to content

Commit

Permalink
fix: thank you pages copy and ui
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoycoechea-lightit committed Jan 17, 2024
1 parent 2f5be23 commit 469488a
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 33 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions apps/eo_web/dist/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"src": "../../packages/ui/src/assets/avatar.svg"
},
"src/main.css": {
"file": "assets/main-f7238d96.css",
"file": "assets/main-d3160e96.css",
"src": "src/main.css"
},
"src/main.tsx": {
"assets": [
"assets/UploadFile-694e44b5.svg"
],
"css": [
"assets/main-f7238d96.css"
"assets/main-d3160e96.css"
],
"file": "assets/main-b3be06ed.js",
"file": "assets/main-e22fc856.js",
"isEntry": true,
"src": "src/main.tsx"
}
Expand Down
2 changes: 1 addition & 1 deletion apps/eo_web/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const Header = () => {
<Button
variant="black"
onClick={() => setOpenModal(true)}
font="regular"
font="semiBold"
>
Need Help?
</Button>
Expand Down
4 changes: 2 additions & 2 deletions apps/eo_web/src/copy/copy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ export const faqs: Copy[] = [
{
title: "How much does eo cost?",
content:
"Your care is completely free. And we’ll reimburse you for the cost of your products. Just send a picture of your receipt to support@eo.care each time you make a purchase and we’ll provide you with an Amazon gift card in an equal amount.",
"eo costs $14 per month for your clinician-reviewed plan, ongoing plan optimization based on your feedback and unlimited phone calls and in-app messaging with our care team. You can cancel your subscription any time. Note that the cost of your recommended products is NOT included in your plan unless you’re participating in an eo clinical pilot.",
},
{
title:
"Do I order the products that are included in my care plan or do you do it for me?",
content:
"After you’ve approved them, we’ll order your products for you and let you know when they’re ready for pick-up - and how much they cost.",
"After you’ve approved your recommended products, we’ll order your THC products for you and let you know when they’re ready for pick-up. You can order any non-THC products (e.g. CBD, CBN or CBG products) direct from our recommended retail partners for home delivery.",
},
{
title: "What should I bring with me when I pick-up my products?",
Expand Down
15 changes: 10 additions & 5 deletions apps/eo_web/src/screens/Athlete/AthleteSurveyThankYou.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,21 @@ export const AthleteSurveyThankYou = () => {
<Typography
variant="base"
font="regular"
className="text-center text-[22px] font-normal leading-[36px]"
className="text-center text-[22px] font-normal leading-[36px] max-w-xl"
>
We received your feedback! <br />
<br />
Thank you! <br />
<br />
Have questions? We’re here. Email [email protected], call
<br />
<a href="tel:+1-877-707-0706">877-707-0706</a>, or schedule a free
consultation.
Have questions? We’re here. Email [email protected], call <a href="tel:+1-877-707-0706">877-707-0706</a>, or {" "}
<a
className="cursor-pointer underline"
href="https://eo-care-telemed.as.me/schedule.php"
target="_blank"
>
schedule a free consultation
</a>
.
</Typography>
</AllDonePanel>
<HowEOWorks />
Expand Down
15 changes: 10 additions & 5 deletions apps/eo_web/src/screens/Cancer/CancerSurveyThankYou.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,21 @@ export const CancerSurveyThankYou = () => {
<Typography
variant="base"
font="regular"
className="text-center text-[22px] font-normal leading-[36px]"
className="text-center text-[22px] font-normal leading-[36px] max-w-xl"
>
We received your feedback! <br />
<br />
Thank you! <br />
<br />
Have questions? We’re here. Email [email protected], call
<br />
<a href="tel:+1-877-707-0706">877-707-0706</a>, or schedule a free
consultation.
Have questions? We’re here. Email [email protected], call <a href="tel:+1-877-707-0706">877-707-0706</a>, or {" "}
<a
className="cursor-pointer underline"
href="https://eo-care-telemed.as.me/schedule.php"
target="_blank"
>
schedule a free consultation
</a>
.
</Typography>
</AllDonePanel>
<HowEOWorks pilot={!usePayment} />
Expand Down
21 changes: 12 additions & 9 deletions apps/eo_web/src/screens/ProfilingThankYou.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,25 @@ export const ProfilingThankYou = () => {
<Typography
variant="base"
font="regular"
className="text-center text-[22px] font-normal leading-[36px]"
className="text-center text-[22px] font-normal leading-[36px] max-w-3xl"
>
You’ll be able to review your initial, personalized,
clinician-approved
<br /> care plan within 24 hours. When your care plan is ready, we
will send you an email
<br /> with a link to{" "}
clinician-approved care plan within 24 hours. When your care plan is ready, we
will send you an email with a link to{" "}
<span className="cursor-pointer underline" onClick={goToWebApp}>
log into your account.
</span>
<br />
<br />
Have questions? We’re here. Email [email protected], call
<br />
<a href="tel:+1-877-707-0706">877-707-0706</a>, or schedule a free
consultation.
Have questions? We’re here. Email [email protected], call <a href="tel:+1-877-707-0706">877-707-0706</a>, or {" "}
<a
className="cursor-pointer underline"
href="https://eo-care-telemed.as.me/schedule.php"
target="_blank"
>
schedule a free consultation
</a>
.
</Typography>
</AllDonePanel>
<HowEOWorks pilot={channel === "cancer" && !usePayment} />
Expand Down
15 changes: 10 additions & 5 deletions apps/eo_web/src/screens/Senior/SeniorSurveyThankYou.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,21 @@ export const SeniorSurveyThankYou = () => {
<Typography
variant="base"
font="regular"
className="text-center text-[22px] font-normal leading-[36px]"
className="text-center text-[22px] font-normal leading-[36px] max-w-xl"
>
We received your feedback! <br />
<br />
Thank you! <br />
<br />
Have questions? We’re here. Email [email protected], call
<br />
<a href="tel:+1-877-707-0706">877-707-0706</a>, or schedule a free
consultation.
Have questions? We’re here. Email [email protected], call <a href="tel:+1-877-707-0706">877-707-0706</a>, or {" "}
<a
className="cursor-pointer underline"
href="https://eo-care-telemed.as.me/schedule.php"
target="_blank"
>
schedule a free consultation
</a>
.
</Typography>
</AllDonePanel>
<HowEOWorks />
Expand Down

0 comments on commit 469488a

Please sign in to comment.