Skip to content

Commit

Permalink
test1
Browse files Browse the repository at this point in the history
  • Loading branch information
Clara Zhang committed Nov 6, 2024
1 parent d4155a7 commit 6834058
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/caseStudies/FacialRecognition.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const FacialRecognitionInfo = [
post: {
profilePic: teachLogo,
profilePicName: "Profile Picture - TeachLA Logo",
header: "Case Study #500: Face Recognition",
header: "Case Study #3: Face Recognition",
subheader: "Stay Tuned For More!",
bodyText: [
{
Expand All @@ -40,7 +40,7 @@ const FacialRecognitionInfo = [
profilePic: teachLogo,
profilePicName: "Profile Picture - Frame 1",
header: "Frame 1",
subheader: "Why Is This bad?",
subheader: "Why Is This Important?",
bodyText: [
{
body: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ export default function ConclusionGraphic() {
<button
disabled={currentCard === 0}
className={`card-button ${currentCard === 0 ? "gray" : ""}`}
style={{
backgroundColor: currentCard === 0 ? "gray" : "initial",
}}
aria-label="Previous Solution"
onClick={previousCard}
>
Expand All @@ -28,6 +31,9 @@ export default function ConclusionGraphic() {
className={`card-button ${
currentCard === conclusion.length - 1 ? "gray" : ""
}`}
style={{
backgroundColor: currentCard === 0 ? "gray" : "initial",
}}
aria-label="Next Solution"
onClick={nextCard}
>
Expand Down

0 comments on commit 6834058

Please sign in to comment.