diff --git a/app/assets/images/product/proposition-illustration.png b/app/assets/images/product/proposition-illustration.png index b1fcfbfd5..12a267dc2 100644 Binary files a/app/assets/images/product/proposition-illustration.png and b/app/assets/images/product/proposition-illustration.png differ diff --git a/app/assets/stylesheets/_grids.scss b/app/assets/stylesheets/_grids.scss index 52c71c5b7..818891e54 100644 --- a/app/assets/stylesheets/_grids.scss +++ b/app/assets/stylesheets/_grids.scss @@ -95,6 +95,10 @@ text-align: right; } +.align-with-big-number-hint { + margin-top: $gutter / 0.6; +} + .global-cookie-message { p { @extend %site-width-container; diff --git a/app/assets/stylesheets/views/product-page.scss b/app/assets/stylesheets/views/product-page.scss index 5c3007300..10cb3ec57 100644 --- a/app/assets/stylesheets/views/product-page.scss +++ b/app/assets/stylesheets/views/product-page.scss @@ -16,7 +16,7 @@ background-image: file-url('product/proposition-illustration.png'); background-size: 320px; background-repeat: no-repeat; - background-position: right -6px top 85px; + background-position: right -6px top 100px; @include ie-lte(8) { background-image: none; diff --git a/app/templates/views/signedout.html b/app/templates/views/signedout.html index 4386bbd8e..a08135339 100644 --- a/app/templates/views/signedout.html +++ b/app/templates/views/signedout.html @@ -1,7 +1,7 @@ {% extends "fullwidth_template.html" %} {% block meta %} - + {% endblock %} {% block page_title %} @@ -25,7 +25,7 @@

- Send emails and text messages to your users + Send emails, text messages and letters to your users

Try GOV.UK Notify now if you work in central government, a local authority, or the NHS. @@ -49,8 +49,8 @@ Control your content

- You don’t need any technical knowledge to create email and - text message templates. + You don’t need any technical knowledge to create email, + text message or letter templates.

@@ -147,14 +147,17 @@

Text messages

250,000
- free text messages a year, then - 1.58 pence per message + free text messages a year,
+ then 1.58 pence per message
-
-
-
-

- There’s no monthly charge, no setup fee and no procurement process. +

+

Letters

+
30 pence
+ to print and post a one page letter +
+
+

+ There’s no monthly charge, no setup fee and no procurement process.

diff --git a/tests/app/main/views/test_index.py b/tests/app/main/views/test_index.py index d72e1a8e7..0c5b05ff6 100644 --- a/tests/app/main/views/test_index.py +++ b/tests/app/main/views/test_index.py @@ -11,8 +11,14 @@ def test_non_logged_in_user_can_see_homepage( page = BeautifulSoup(response.data.decode('utf-8'), 'html.parser') - assert page.select_one('meta[name=description]')['content'].startswith( - 'GOV.UK Notify lets you send emails and text messages' + assert page.h1.text.strip() == ( + 'Send emails, text messages and letters to your users' + ) + + assert page.select_one('meta[name=description]')['content'].strip() == ( + 'GOV.UK Notify lets you send emails, text messages and letters ' + 'to your users. Try it now if you work in central government, a ' + 'local authority, or the NHS.' )