forked from lafeo/EK-IEEE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWinter.js
138 lines (134 loc) · 4.65 KB
/
Winter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import React from "react";
import { Link } from "react-router-dom";
const Winter = () => {
return (
<div>
<header
id="header"
class="fixed-top d-flex align-items-center justify-content-space-between"
>
<svg
width="47%"
height="47%"
viewBox="0 0 838 413"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
xmlSpace="preserve"
xmlnsSerif="http://www.serif.com/"
>
<g transform="matrix(1,0,0,1,-121.006,-333.674)">
<g transform="matrix(0.999283,0,0,1.56476,-10.6009,-355.817)">
<g transform="matrix(878.845,0,0,561.245,115.827,698.774)">
<path
d="M0.313,-0.157C0.304,-0.126 0.279,-0.112 0.247,-0.112C0.202,-0.112 0.174,-0.141 0.169,-0.195L0.46,-0.195L0.46,-0.234C0.46,-0.368 0.382,-0.46 0.244,-0.46C0.114,-0.46 0.018,-0.364 0.018,-0.225C0.018,-0.085 0.109,0.01 0.247,0.01C0.364,0.01 0.442,-0.053 0.458,-0.157L0.313,-0.157ZM0.244,-0.338C0.283,-0.338 0.306,-0.31 0.308,-0.273L0.172,-0.273C0.182,-0.315 0.207,-0.338 0.244,-0.338Z"
fill="#fff"
/>
</g>
<g transform="matrix(878.845,0,0,561.245,510.049,699.146)">
<path
d="M0.339,-0L0.519,-0L0.343,-0.263L0.524,-0.461L0.335,-0.461L0.199,-0.306L0.199,-0.461L0.042,-0.461L0.042,-0L0.199,-0L0.199,-0.132L0.229,-0.167L0.339,-0Z"
fill="#fff"
/>
</g>
</g>
</g>
</svg>
<div class="text-align-center">
<h1
style={{
textAlign: "center",
color: "white",
display: "block",
margin: "auto 3rem",
}}
>
Volunteer Details
</h1>
</div>
</header>
<main id="main">
<section class="breadcrumbs">
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<h2>Seasons Change</h2>
<ol>
<li>
<a href="/volunteer-info">Home</a>
</li>
<li>Winter</li>
</ol>
</div>
</div>
</section>
<section class="inner-page">
<div class="container">
<h2 style={{ fontWeight: "bolder" }}>
Supporting someone to stay well this winter
</h2>
<p>
Winter conditions can be bad for our health, especially for people
aged 65 or older, and people with long-term conditions such as
heart or kidney disease, COPD, bronchitis, emphysema, asthma or
diabetes.
</p>
<br />
<p>
The NHS have produced the following guidance, We're here to help
you stay well this winter, with important information including
changes to how they provide care to make it safer for people
during the coronavirus pandemic.
</p>
<h3 style={{ fontWeight: "bolder" }}>Actions</h3>
<h4>
Download
<a href="https://nhsvolunteerresponders.org.uk/documents/were-here-to-help-you-stay-well-this-winter-851.pdf">
{" "}
Help sheet
</a>
</h4>
<div
style={{
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
>
<Link to="/volunteer-info/4">
<button
style={{
background: "#0072CE",
color: "white",
borderRadius: "5px",
padding: "0.5rem 1rem",
margin: " 0rem 1rem",
outline: "none",
border: "none",
}}
>
Prev
</button>
</Link>
<Link to="/volunteer-info/1">
<button
style={{
background: "#0072CE",
color: "white",
borderRadius: "5px",
padding: "0.5rem 1rem",
margin: " 0rem 1rem",
outline: "none",
border: "none",
}}
>
Next
</button>
</Link>
</div>
</div>
</section>
</main>
</div>
);
};
export default Winter;