mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-09 19:04:33 -04:00
‘How much does it cost’ is one of the user needs that we identifed for the product page. Cost is not the primary reason someone would use Notify (they’re more likely to cite ease, or that it’s ‘official’). However if you _don’t_ mention cost then it looks like we’re hiding something or that there’s a catch. So putting it on the page allays fears that people might have, rather than pushing them towards using it. Visually I’ve dropped the size of the `<h2>`s on this page so that there’s enough difference between them and the big numbers. The idea of the big numbers being big is to catch people’s attention as they scroll down the page, by breaking up the rythmn.
149 lines
4.3 KiB
HTML
149 lines
4.3 KiB
HTML
{% from 'components/big-number.html' import big_number %}
|
||
{% from "components/banner.html" import banner_wrapper %}
|
||
{% from "components/phone.html" import phone %}
|
||
|
||
{% extends "fullwidth_template.html" %}
|
||
|
||
{% block page_title %}
|
||
GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="product-page-intro">
|
||
<div class="product-page-intro-wrapper">
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
<h1>
|
||
Send emails and text messages to your users
|
||
</h1>
|
||
<p>
|
||
Try GOV.UK Notify now if you work for a UK government
|
||
department or agency.
|
||
</p>
|
||
<div class="button-container">
|
||
<a class="button button-start" href='{{ url_for('.register' )}}'>
|
||
Create an account
|
||
</a>
|
||
or <a href="{{ url_for('.sign_in' )}}">sign in</a> if you’ve used
|
||
it before
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="product-page-section">
|
||
<div class="grid-row">
|
||
<div class="column-half">
|
||
<h2>
|
||
Control your content
|
||
</h2>
|
||
<p>
|
||
You don’t need any technical knowledge to create email and
|
||
text message templates.
|
||
</p>
|
||
</div>
|
||
<div class="column-half">
|
||
<img src="/static/images/product/01-templates.svg" alt="">
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="product-page-section">
|
||
<div class="grid-row">
|
||
<div class="column-half">
|
||
<h2>
|
||
See how your messages perform
|
||
</h2>
|
||
<p>
|
||
Track how many messages you’ve sent and
|
||
find out which ones aren’t getting delivered.
|
||
</p>
|
||
</div>
|
||
<div class="column-half">
|
||
<img
|
||
src="/static/images/product/02-reporting.svg"
|
||
alt="A screenshot of GOV.UK Notify showing counts of emails and text messages sent"
|
||
>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="product-page-section">
|
||
<h2 class="with-keyline">
|
||
Send messages manually or automatically
|
||
</h2>
|
||
<div class="grid-row">
|
||
<div class="column-half">
|
||
<p>
|
||
Upload a spreadsheet of email addresses or
|
||
phone numbers and Notify sends the messages.
|
||
</p>
|
||
<img
|
||
src="/static/images/product/03-spreadsheet.svg"
|
||
alt="A screenshot of a spreadsheet with columns for email address, name and colour"
|
||
>
|
||
</div>
|
||
<div class="column-half">
|
||
<p>
|
||
Integrate the GOV.UK Notify API with your web application or
|
||
back office system.
|
||
</p>
|
||
<img
|
||
src="/static/images/product/04-api.svg"
|
||
alt="A screenshot of some computer code with a notify.send_email function"
|
||
>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="product-page-section">
|
||
<div class="with-keyline bottom-gutter-2">
|
||
<h2>Pricing</h2>
|
||
<div class="grid-row bottom-gutter">
|
||
<div class="column-half">
|
||
<h3 class="visually-hidden">Emails</h3>
|
||
<div class="product-page-big-number">Unlimited</div>
|
||
free emails
|
||
</div>
|
||
<div class="column-half">
|
||
<h3 class="visually-hidden">Text messages</h3>
|
||
<div class="product-page-big-number">250,000</div>
|
||
free text messages a year, then
|
||
1.65 pence per message
|
||
</div>
|
||
</div>
|
||
<div class="grid-row bottom-gutter">
|
||
<div class="column-three-quarters">
|
||
<p>
|
||
There’s no monthly charge, no setup fee and no procurement process.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="product-page-section">
|
||
<div class="grid-row">
|
||
<div class="column-half">
|
||
<h2 class="with-keyline">
|
||
The team
|
||
</h2>
|
||
<p>
|
||
GOV.UK Notify is built by the Government Digital Service
|
||
and is supported 24 hours a day, 7 days a week.
|
||
</p>
|
||
<p>
|
||
<a href="{{ url_for('main.feedback') }}">Contact the team</a> if you have a question or want
|
||
to give feedback.
|
||
</p>
|
||
</div>
|
||
<div class="column-half">
|
||
<img
|
||
src="/static/images/product/team.jpg"
|
||
alt="A photo of the GOV.UK Notify team gathered around a big screen. One team member is pointing at a graph on the screen."
|
||
>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
{% endblock %}
|