diff --git a/app/assets/images/alarm.svg b/app/assets/images/alarm.svg new file mode 100644 index 000000000..57e6180bc --- /dev/null +++ b/app/assets/images/alarm.svg @@ -0,0 +1 @@ + diff --git a/app/assets/images/alert.svg b/app/assets/images/alert.svg new file mode 100644 index 000000000..d0d516d8f --- /dev/null +++ b/app/assets/images/alert.svg @@ -0,0 +1 @@ + diff --git a/app/assets/images/calendar.png b/app/assets/images/calendar.png deleted file mode 100644 index 20bf82540..000000000 Binary files a/app/assets/images/calendar.png and /dev/null differ diff --git a/app/assets/images/calendar.svg b/app/assets/images/calendar.svg new file mode 100644 index 000000000..9b755e9fd --- /dev/null +++ b/app/assets/images/calendar.svg @@ -0,0 +1 @@ + diff --git a/app/assets/images/checklist.png b/app/assets/images/checklist.png deleted file mode 100644 index e86e2f670..000000000 Binary files a/app/assets/images/checklist.png and /dev/null differ diff --git a/app/assets/images/reminder.png b/app/assets/images/reminder.png deleted file mode 100644 index a93d3c1a9..000000000 Binary files a/app/assets/images/reminder.png and /dev/null differ diff --git a/app/templates/views/about/why-text-messaging.html b/app/templates/views/about/why-text-messaging.html index efb2df873..bdb63701d 100644 --- a/app/templates/views/about/why-text-messaging.html +++ b/app/templates/views/about/why-text-messaging.html @@ -1,5 +1,4 @@ {% extends "base.html" %} - {% set page_title = "Why text messaging" %} {% block per_page_title %} @@ -7,7 +6,9 @@ {% endblock %} {% block content_column_content %} - + +

{{page_title}}

Reach people using a common method

@@ -46,21 +47,21 @@

{% set card_contents = [ { - "image_src": asset_url('images/calendar.png'), + "image_src": asset_url('images/calendar.svg'), "card_heading": "Reminders", "p_text": "In a text bubble // Your Quality Control food phone interview is on ((date)) at ((time)). Failure to attend may lead to closure of your benefits. Call 1-800-222-3333 with questions.", "alt_text": "reminder text example" }, { - "image_src": asset_url('images/reminder.png'), + "image_src": asset_url('images/alert.svg'), "card_heading": "Alerts to take action", "p_text": "In a text bubble // Your household's Medicaid coverage is expiring. To keep getting Medicaid, you must complete your renewal by ((date)). You can renew online at dhs.state.gov…", "alt_text": "alerts text example" }, { - "image_src": asset_url('images/checklist.png'), + "image_src": asset_url('images/alarm.svg'), "card_heading": "Important status updates", "p_text": "In a text bubble // Your passport has been issued at the Los Angeles Passport Agency. Please come to the desk between 1:30pm and 2:30pm today to pick up your passport…", @@ -80,8 +81,5 @@ {% endfor %} - - -
{% endblock %}