-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfaq.html
46 lines (42 loc) · 3.82 KB
/
faq.html
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
---
title: Frequently Asked Questions
heading: "CoEpi: Community Epidemiology in Action"
description: Questions you may have about CoEpi.
faq:
- question: What does CoEpi do?
answer: CoEpi built mobile apps (for both iOS and Android) with a privacy-first approach to anonymous Bluetooth proximity-based exposure matching and symptom alerting to address the spread of COVID-19 and other transmissible illnesses (like colds and flu) in our communities.
- question: How does CoEpi ensure anonymity?
answer: CoEpi users simply install the app to get started – there is no registration or information collected, and no profile is created. Users will enable Bluetooth tracking to enable them to detect proximity to other users, and can get alerted if anyone symptomatic was previously nearby without disclosing any information about their location or devices they were in proximity to. If the user begins experiencing any symptoms, they can optionally choose to anonymously share symptom information for the purpose of alerting individuals they’ve been in proximity to about those symptoms.
- question: How does CoEpi do exposure matching and alerting if a user is anonymous?
answer: When someone who uses CoEpi was in proximity of another potentially infectious CoEpi user, CoEpi notifies other users who were in their proximity during the past relevant timeframe. A notified CoEpi user will (in future versions) be able to see (if they recorded the info locally on their device) the date/time/place of their proximity with the symptomatic user. The user will then be able to optionally enable periodic check-ins where the app will ask the user to report any symptoms they’ve noticed, what if anything they’re doing to reduce possible re-transmission, and will prompt the user to consent to share that information with other CoEpi users and/or public health officials if appropriate.
- question: Is CoEpi working with the other Bluetooth-based exposure alerting apps?
answer: Yes! CoEpi has a long-term history of collaborating with members of dozens of other Bluetooth-based exposure alerting efforts around the world.
- question: How is CoEpi different from other Bluetooth-based exposure alerting apps?
answer: Many of the other apps are collaborating with CoEpi on the shared Bluetooth protocol so our apps are interoperable. (See more in <a href="https://github.com/Co-Epi/CEN">this Github repo</a>.) The main difference between CoEpi and other exposure alerting apps is that we laser-focused on creating an app that’s useful for end users – like you and us – immediately. Communities of close contacts can begin protecting themselves with CoEpi immediately; we don't need millions of people to install the app to see a benefit from using it. By installing CoEpi and reporting symptoms, you and the people you interact with can create your own early warning system to detect and respond to any infectious disease.
---
<div class="plans">
{% for plan in page.pricing_table %}
<ul class="plan">
<li style="background: {{ plan.color }}">
<h3>{{ plan.name }}</h3>
</li>
{% for feature in plan.features %}
<li {% if feature.highlight %} class="highlighted"{% endif %}>{{ feature.text }}</li>
{% endfor %}
{% if plan.call_to_action %}
<li class="pricing-cta"><div class="button"><a style="background: {{ plan.color }}" href="{{ plan.call_to_action.link }}">{{ plan.call_to_action.text }} →</a></div></li>
{% endif %}
</ul>
{% endfor %}
</div>
{% if page.faq %}
<h2>Frequently Asked Questions</h2>
<dl class="faq">
{% for item in page.faq %}
<div>
<dt>{{ item.question }}</dt>
<dd>{{ item.answer }}</dd>
</div>
{% endfor %}
</dl>
{% endif %}