Skip to content

Commit ff655d6

Browse files
committed
bar graphs implemented
1 parent 666be10 commit ff655d6

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

website/package-lock.json

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"@testing-library/react": "^16.3.0",
88
"@testing-library/user-event": "^14.6.1",
99
"apexcharts": "^4.5.0",
10+
"chart.js": "^4.5.1",
1011
"react": "^19.1.0",
1112
"react-apexcharts": "^1.7.0",
1213
"react-dom": "^19.1.0",

website/src/caseStudies/FacialRecognition.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import "../main.css";
33
import teachLogo from "../assets/teachla-logo.svg";
44
import PostsList from "../components/mainContent/PostsList";
55
import CounterFrame from "../components/posts/FacialRecognition/CounterFrame";
6+
import AccuracyChart from "../components/posts/FacialRecognition/AccuracyChart";
67
import { VisibilityProvider } from "../components/mainContent/commonLogic";
78

89
export default function FacialRecognition() {
@@ -106,6 +107,20 @@ const FacialRecognitionInfo = [
106107
},
107108
},
108109

110+
{
111+
post: {
112+
profilePic: teachLogo,
113+
profilePicName: "Profile Picture - Frame 3",
114+
header: "Accuracy of Face Recognition Technologies",
115+
subheader: "Hover to See Group Performance",
116+
bodyText: [
117+
{
118+
body: <AccuracyChart />,
119+
},
120+
],
121+
},
122+
},
123+
109124
{
110125
post: {
111126
profilePic: teachLogo,

0 commit comments

Comments
 (0)