Skip to content
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

Add COVID-19 section to FAQ #1820

Merged
merged 6 commits into from
Nov 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions modules/pages/client/components/Faq.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ export default function Faq({ category, invitationsEnabled, children }) {
>
{t('How do I report a member that violates the rules?')}
</a>
<a href="/faq#covid-19" className="list-group-item">
{t('Trustroots and COVID-19 outbreak')}
</a>
</div>
</div>
)}
Expand Down
29 changes: 29 additions & 0 deletions modules/pages/client/components/FaqGeneral.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,35 @@ export default function FaqGeneral({ invitationsEnabled, user }) {
your report.
</Trans>
</div>

<div className="faq-question" id="covid-19">
<h3>{t('Trustroots and COVID-19 outbreak')}</h3>
<Trans t={t} ns="pages">
We are all waiting to get back to &quot;normal&quot;, for
international travel to open up again, and to having people enjoy the
Trustroots community.
</Trans>
<br />
<br />
<Trans t={t} ns="pages">
Until then, be patient. Please help stop the spread of the virus.
Consider not traveling, especially internationally. Consider not
hosting people, especially if you live with{' '}
<a href="https://www.who.int/westernpacific/emergencies/covid-19/information/high-risk-groups">
people at higher risk
</a>
</Trans>
.
<br />
<br />
<Trans t={t} ns="pages">
When you do travel or host, take care of your own and other&apos;s
safety. Communicate to your guests and hosts what your expectations
regarding safety are. <a href="/rules">Remember to stay respectful</a>{' '}
towards each other and each other&apos;s needs when it comes to
safety.
</Trans>
</div>
</Faq>
);
}
Expand Down