aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/favicon.pngbin0 -> 375 bytes
-rw-r--r--public/index.html1
-rw-r--r--src/pages/Timer/TimerButton/TimerButton.js2
3 files changed, 2 insertions, 1 deletions
diff --git a/public/favicon.png b/public/favicon.png
new file mode 100644
index 0000000..5991e63
--- /dev/null
+++ b/public/favicon.png
Binary files differ
diff --git a/public/index.html b/public/index.html
index f14ab80..0ecf8b9 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
+ <link rel="icon" type="image/png" sizes="16x16" href="./favicon.png" />
<title> ChronoCube </title>
</head>
<body>
diff --git a/src/pages/Timer/TimerButton/TimerButton.js b/src/pages/Timer/TimerButton/TimerButton.js
index 254f73c..fdb6b7c 100644
--- a/src/pages/Timer/TimerButton/TimerButton.js
+++ b/src/pages/Timer/TimerButton/TimerButton.js
@@ -74,7 +74,7 @@ const TimerButton = ({ registerResult }) => {
const composeHelperText = () => {
switch (mode) {
- case 'running': return '_';
+ case 'running': return 'Go fast!';
case 'countdown': return 'Release SPACE to begin';
case 'over': return 'You are too late!';
default: return 'Hold SPACE to start countdown';