-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1429 from guardian/canada-strike-message
Canada strike message
- Loading branch information
Showing
3 changed files
with
77 additions
and
19 deletions.
There are no files selected for viewing
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
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,37 @@ | ||
import { css } from '@emotion/react'; | ||
import { Link } from '@guardian/source/react-components'; | ||
import { ProblemAlert } from '../shared/ProblemAlert'; | ||
|
||
export const CanadaStrike = () => ( | ||
<ProblemAlert | ||
message={ | ||
<div> | ||
<p> | ||
Due to industrial action by Canada Post, it is not possible | ||
to deliver your copies of the Guardian Weekly. You are | ||
welcome to pause your subscription during the period of | ||
industrial action, details on how to do so can be found{' '} | ||
<Link | ||
href="https://manage.theguardian.com/help-centre/article/i-need-to-pause-my-delivery" | ||
priority="primary" | ||
> | ||
here | ||
</Link> | ||
. | ||
</p> | ||
<p> | ||
If you have reached your allowance limit please contact{' '} | ||
<Link | ||
href="mailto:[email protected]" | ||
priority="primary" | ||
> | ||
[email protected] | ||
</Link> | ||
</p> | ||
</div> | ||
} | ||
additionalcss={css` | ||
margin-top: 30px; | ||
`} | ||
/> | ||
); |
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