Skip to content

Commit 6834058

Browse files
author
Clara Zhang
committed
test1
1 parent d4155a7 commit 6834058

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

website/src/caseStudies/FacialRecognition.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const FacialRecognitionInfo = [
2525
post: {
2626
profilePic: teachLogo,
2727
profilePicName: "Profile Picture - TeachLA Logo",
28-
header: "Case Study #500: Face Recognition",
28+
header: "Case Study #3: Face Recognition",
2929
subheader: "Stay Tuned For More!",
3030
bodyText: [
3131
{
@@ -40,7 +40,7 @@ const FacialRecognitionInfo = [
4040
profilePic: teachLogo,
4141
profilePicName: "Profile Picture - Frame 1",
4242
header: "Frame 1",
43-
subheader: "Why Is This bad?",
43+
subheader: "Why Is This Important?",
4444
bodyText: [
4545
{
4646
body: (

website/src/components/posts/Facebook/conclusion/ConclusionGraphic.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ export default function ConclusionGraphic() {
1818
<button
1919
disabled={currentCard === 0}
2020
className={`card-button ${currentCard === 0 ? "gray" : ""}`}
21+
style={{
22+
backgroundColor: currentCard === 0 ? "gray" : "initial",
23+
}}
2124
aria-label="Previous Solution"
2225
onClick={previousCard}
2326
>
@@ -28,6 +31,9 @@ export default function ConclusionGraphic() {
2831
className={`card-button ${
2932
currentCard === conclusion.length - 1 ? "gray" : ""
3033
}`}
34+
style={{
35+
backgroundColor: currentCard === 0 ? "gray" : "initial",
36+
}}
3137
aria-label="Next Solution"
3238
onClick={nextCard}
3339
>

0 commit comments

Comments
 (0)