diff options
| author | Pinapelz <yukais@pinapelz.com> | 2026-06-23 13:53:21 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-06-23 13:53:49 -0700 |
| commit | 1171f063ddf275406a3d404e1495c423b40fc706 (patch) | |
| tree | 3f233107a49717e352642c139230bad31acc408d /src/components/InfoPopUp | |
| parent | d5e5de44acdad962d0943dbb42e060a4600f9362 (diff) | |
add tutorial notes for colored guess states
Diffstat (limited to 'src/components/InfoPopUp')
| -rw-r--r-- | src/components/InfoPopUp/index.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/InfoPopUp/index.tsx b/src/components/InfoPopUp/index.tsx index 92ad52c..ba9f233 100644 --- a/src/components/InfoPopUp/index.tsx +++ b/src/components/InfoPopUp/index.tsx @@ -23,6 +23,13 @@ export function InfoPopUp({ onClose }: Props) { <Styled.Section> <p>Answer in as few tries as possible and share your score!</p> </Styled.Section> + <Styled.Spacer /> + <Styled.Section> + <p>⬜ Skipped</p> + <p>🟥 Incorrect Song, Incorrect Artist</p> + <p>🟨 Correct Artist, Incorrect Song</p> + <p>🟩 You guessed it!</p> + </Styled.Section> <Button variant="green" style={{ marginTop: 20 }} onClick={onClose}> Play </Button> |
