-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create voice-and-tone.html #598
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d2c5071
Create voice-and-tone.html
Sarah-Lombardi fe7a0fa
Rename to .tsx
daniel-ac-martin 8d4e77b
Add link to new page
daniel-ac-martin a44a114
Correct meta-data and use correct menu
daniel-ac-martin cbbc982
Merge pull request #599 from UKHomeOffice/voice-and-tone-dacm
Sarah-Lombardi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
apps/docs/src/common/pages/content-style-guide/voice-and-tone.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import { FC, createElement as h } from 'react'; | ||
import { Helmet } from 'react-helmet-async'; | ||
import { PageProps } from '@not-govuk/app-composer'; | ||
import { A } from '@not-govuk/components'; | ||
import { menu } from '../accessibility' | ||
|
||
export const title = 'Limited English'; | ||
const description = 'Designing for people with limited English'; | ||
export const section = 'Accessibility'; | ||
|
||
const biometricsSign = require('../../../../assets/images/content-style-guide/Biometrics sign.png'); | ||
|
||
const Page: FC<PageProps> = ({ location }) => ( | ||
<div className="govuk-grid-row"> | ||
<Helmet> | ||
<title>{title} - Home Office Design System</title> | ||
<meta name="description" content={description} /> | ||
<meta name="og:title" content={title} /> | ||
<meta name="og:description" content={description} /> | ||
<meta name="og:article:section" content={section} /> | ||
</Helmet> | ||
<div className="govuk-grid-column-one-quarter"> | ||
{menu} | ||
</div> | ||
<div className="govuk-grid-column-three-quarters"> | ||
<h1> | ||
<span className="caption">Content style guide</span> | ||
Voice and tone | ||
</h1> | ||
<h2 id="home-office-voice">Home Office voice</h2> | ||
<p>Our voice should be consistent across all our products and services. It is who we are and how we want others to see us.</p> | ||
<p>A consistent voice presents us as trustworthy, confident and organised.</p> | ||
<p>The Home Office voice is:</p> | ||
<ul> | ||
<li>human</li> | ||
<li>empowering</li> | ||
<li>respectful</li> | ||
<li>clear</li> | ||
</ul> | ||
<p>It is based on our core Home Office values of compassion, courage, respect and collaboration.</p> | ||
<p>Here are some examples showing what we mean.</p> | ||
<h3 id="human">Human</h3> | ||
<p>Be empathetic, natural, and use words that the audience understands. Vary your sentence length and structure. Do not be formulaic or monotonous and try to avoid standard templated text if you can.</p> | ||
<h3 id="empowering">Empowering</h3> | ||
<p>Focus on what someone can do, rather than what they cannot do or what will be done to them. Provide next steps. Speak to the reader, use ‘you’ as much as you can, and write in the active voice.</p> | ||
<h3 id="respectful">Respectful</h3> | ||
<p>Be inclusive, considerate and sensitive. A respectful voice is not accusing or demanding; it fosters an environment where people feel valued and treated with dignity.</p> | ||
<h3 id="clear">Clear</h3> | ||
<p>Use plain and unambiguous language. Write to be understood. Be honest about what we are doing and why, and clarify and explain if needed. Do not hide meaning behind legal or government jargon.</p> | ||
|
||
<h2 id="tone">Tone</h2> | ||
<p>Unlike voice, tone can change depending on the audience or channel. Like in conversation, this is about being responsive to the person and the context.</p> | ||
<p>Here are some examples:</p> | ||
<ul> | ||
<li>Our HR virtual assistant is more chatty, informal and varied in tone than our static HR guidance and policies.</li> | ||
<li>Our case management systems are direct, clear, professional and active in tone as staff need instructional and straightforward language that reflects their work processes and helps them to quickly and accurately complete tasks.</li> | ||
</ul> | ||
|
||
<h2>Help improve this guidance</h2> | ||
<p>To contribute, join the <A href="https://github.com/UKHomeOffice/design-system/discussions/">GitHub discussion</A>.</p> | ||
</div> | ||
</div> | ||
); | ||
|
||
export default Page; | ||
|
||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, so this time the file contents are TypeScript/React. So we want the file extension to be
.tsx
.(Basically, the contents need to match the file extension. On your previous PRs, the file contents were just HTML.)