Skip to content

Commit

Permalink
ahhhhhhhhhhh
Browse files Browse the repository at this point in the history
  • Loading branch information
NingetsuSama committed May 18, 2024
1 parent f17f801 commit 065cb9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ function Carousel({ currentCancer }) {
<div id="carouselGraphs" className="carousel carousel-fade slide">
<div className="carousel-inner">
<div className="carousel-item ">
<img src={isProd ? "/TogetherAgainstCancer" : "" + "/graphs/" + (currentCancer.type).toLowerCase() + "/daly.png"} className="d-block w-100" />
<img src={(isProd ? "/TogetherAgainstCancer" : "") + "/graphs/" + (currentCancer.type).toLowerCase() + "/daly.png"} className="d-block w-100" />
</div>
<div className="carousel-item active">
<img src={isProd ? "/TogetherAgainstCancer" : "" + "/graphs/" + (currentCancer.type).toLowerCase() + "/hbar.png"} className="d-block w-100" />
<img src={(isProd ? "/TogetherAgainstCancer" : "") + "/graphs/" + (currentCancer.type).toLowerCase() + "/hbar.png"} className="d-block w-100" />
</div>
<div className="carousel-item active">
<img src={isProd ? "/TogetherAgainstCancer" : "" + "/graphs/" + (currentCancer.type).toLowerCase() + "/time_series.png"} className="d-block w-100" />
<img src={(isProd ? "/TogetherAgainstCancer" : "") + "/graphs/" + (currentCancer.type).toLowerCase() + "/time_series.png"} className="d-block w-100" />
</div>
<div className="carousel-item active">
<img src={isProd ? "/TogetherAgainstCancer" : "" + "/graphs/" + (currentCancer.type).toLowerCase() + "/vbar.png"} className="d-block w-100" />
<img src={(isProd ? "/TogetherAgainstCancer" : "") + "/graphs/" + (currentCancer.type).toLowerCase() + "/vbar.png"} className="d-block w-100" />
</div>
</div>
<button className="carousel-control-prev" type="button" data-bs-target="#carouselGraphs" data-bs-slide="prev">
Expand Down

0 comments on commit 065cb9e

Please sign in to comment.