File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
components/posts/Facebook/conclusion Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff 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 : (
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments