Skip to content

Commit f30214a

Browse files
committed
add new images
1 parent 06a3e60 commit f30214a

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

client/src/components/Leaderboard/Leaderboard.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ export const Leaderboard = () => {
4343
return (
4444
<>
4545
<div className="grid gap-4 text-center">
46-
<div className="icon">🏆</div>
46+
<img
47+
src="https://sdk-race.s3.us-east-1.amazonaws.com/leaderboard.png"
48+
alt="leaderboard"
49+
style={{ height: "325px" }}
50+
/>
4751
<h2 className="text-white">
4852
<strong>Leaderboard</strong>
4953
</h2>

client/src/components/NewGameScreen/NewGameScreen.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { useContext } from "react";
22

33
// components
4-
import racingMap from "../../assets/racingMap.png";
54
import { Footer, Tabs } from "@components";
65

76
// context
@@ -23,7 +22,7 @@ export const NewGameScreen = () => {
2322
<>
2423
<div className="grid gap-6">
2524
<Tabs />
26-
<img src={racingMap} alt="racing map" className="rounded-lg shadow-lg" />
25+
<img src="https://sdk-race.s3.us-east-1.amazonaws.com/logo.png" alt="racing map" style={{ height: "300px" }} />
2726
<div className="card p-4">
2827
<strong>How to Play</strong>
2928
<ol style={{ marginLeft: "18px", listStyle: "auto" }}>

client/src/components/RaceCompletedScreen/RaceCompletedScreen.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ export const RaceCompletedScreen = () => {
4343
<h2>
4444
<strong>Congratulations!</strong>
4545
</h2>
46-
<div style={{ fontSize: "50px" }}>🏁</div>
46+
<img
47+
src="https://sdk-race.s3.us-east-1.amazonaws.com/checkeredFlag.png"
48+
alt="checkered flag"
49+
className="mx-auto"
50+
style={{ height: "255px" }}
51+
/>
4752
<h3>Your Time</h3>
4853
<h2>
4954
<strong>{elapsedTime}</strong>

0 commit comments

Comments
 (0)