aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Index.jsx
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-07-11 17:34:32 -0400
committerGalen Guyer <galen@galenguyer.com>2022-07-11 17:34:32 -0400
commit73017bd8c7858724893cdd7d124a08235efe8120 (patch)
tree91cef51d8779e3260f9712274a1d40b45d486dae /src/pages/Index.jsx
parent935ef7d2f76cca7bc1f9840dc357de85f93a1ec2 (diff)
Update data for 2021-2022
Diffstat (limited to 'src/pages/Index.jsx')
-rw-r--r--src/pages/Index.jsx39
1 files changed, 2 insertions, 37 deletions
diff --git a/src/pages/Index.jsx b/src/pages/Index.jsx
index 78c32f0..1ae9fd1 100644
--- a/src/pages/Index.jsx
+++ b/src/pages/Index.jsx
@@ -15,12 +15,12 @@ const Index = (props) => {
<div>
<div>
<div className="Message">
- This site shows data from the 2020 Fall and 2021 Spring semesters. For the latest data, visit{" "}
+ This site shows data from the 2021 Fall and 2022 Spring semesters. For the latest data, visit{" "}
<a href="https://ritcoviddashboard.com/">ritcoviddashboard.com</a>
</div>
</div>
<div className="Section" id="total">
- <div className="Title">Total Positive Cases Since August 19 (First Day of Classes)</div>
+ <div className="Title">Total Positive Cases Since August 24 (First Day of Classes)</div>
<div className="Cards">
<Card name="Students" link="/totalstudents" latest={latest["total_students"]} />
<Card name="Staff" link="/totalstaff" latest={latest["total_staff"]} />
@@ -34,41 +34,6 @@ const Index = (props) => {
<Card name="Staff" link="/newstaff" latest={latest["new_staff"]} />
</div>
</div>
-
- <div className="Section" id="quarantine">
- <div className="Title">Number of Students in Quarantine</div>
- <p className="Tip">
- Quarantine separates and restricts the movement of people who were exposed to a contagious disease
- to see if they become sick.
- </p>
- <div className="Cards">
- <Card name="On Campus" link="/quarantineoncampus" latest={latest["quarantine_on_campus"]} />
- <Card name="Off Campus" link="/quarantineoffcampus" latest={latest["quarantine_off_campus"]} />
- </div>
- </div>
-
- <div className="Section" id="isolation">
- <div className="Title">Number of Students in Isolation</div>
- <p className="Tip">Isolation separates sick people with a contagious disease from people who are not sick.</p>
- <div className="Cards">
- <Card name="On Campus" link="/isolationoncampus" latest={latest["isolation_on_campus"]} />
- <Card name="Off Campus" link="/isolationoffcampus" latest={latest["isolation_off_campus"]} />
- </div>
- </div>
-
- <div className="Section" id="tests">
- <div className="Title">Tests</div>
- <div className="Cards">
- <Card name="Tests Administered" link="/tests" latest={latest["tests_administered"]} />
- </div>
- </div>
-
- <div className="Section" id="beds">
- <div className="Title">Quarantine/Isolation Bed Availability On-campus</div>
- <div className="Cards">
- <Card name="Beds Available" link="/beds" latest={latest["beds_available"]} suffix="%" />
- </div>
- </div>
</div>
);
};