forked from lafeo/EK-IEEE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommunication.js
178 lines (174 loc) · 6.15 KB
/
Communication.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
import React from "react";
import { Link } from "react-router-dom";
const Communication = () => {
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>Sight Loss Help</h2>
<ol>
<li>
<a href="/volunteer-info">Home</a>
</li>
<li>Sight Loss Help</li>
</ol>
</div>
</div>
</section>
<section class="inner-page">
<div class="container">
<h2 style={{ fontWeight: "bolder" }}>
Supporting and guiding someone with sight loss
</h2>
<h3 style={{ fontWeight: "lighter", color: "#747474" }}>
Communication
</h3>
<ul>
<li>
Always verbally introduce yourself and speak directly to the
person.
</li>
<li>
When speaking to someone always use their name (if known).
</li>
<li>
If you don’t know their name it can be helpful to say, "Hello I
am …. Can I help you with anything"?
</li>
<li>
Speak and avoid relying on non-verbal gestures such as pointing
or nodding/shaking your head.
</li>
<li>
Don’t be scared to offer help if you think the person might want
assistance if you are unsure just ask them.
</li>
<li>Give the person a little extra time to respond.</li>
<li>
Always tell the person if you are going to leave them alone.
</li>
<li>
Always tell the person if you are going to hand them over to
someone else.
</li>
</ul>
<h3 style={{ fontWeight: "lighter", color: "#747474" }}>
Verbal guiding (allows for 2 meter social distancing rule)
</h3>
<ul>
<li>
Ask the person if they would like to be guided and follow their
preferences.
</li>
<li>
If support is required, ask the person if they want you to walk
in front, side, or back of them.
</li>
<li>
Provide the person with clear verbal instruction, describing the
route you are taking, and avoiding all obstacles.
</li>
<li>
Go at the person's pace and give enough time to warn of changes
in direction or potential obstacles.
</li>
<li>
Tell the person what you are doing and explain each step
especially if it involves physical contact.
</li>
<li>
Follow these tips for people arriving at or leaving the
vaccination site.
</li>
</ul>
<div
style={{
display: "flex",
justifyContent: "center",
alignItems: "center",
}}
>
<Link to="/volunteer-info/3">
<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/5">
<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 Communication;