forked from diondiondion/woertchen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InfoModal.tsx
72 lines (64 loc) · 2.44 KB
/
InfoModal.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { Cell } from '../grid/Cell'
import { BaseModal } from './BaseModal'
type Props = {
isOpen: boolean
handleClose: () => void
}
export const InfoModal = ({ isOpen, handleClose }: Props) => {
return (
<BaseModal
title="So funktioniert's:"
isOpen={isOpen}
handleClose={handleClose}
>
<p>
Errate das Pördl des Tages in 6 Versuchen. Nach jedem Versuch
wird mit Farben angezeigt, wie nah dein Wort der Lösung war:
</p>
<div className="flex justify-center mb-1 mt-4">
<Cell value="A" />
<Cell value="L" />
<Cell value="L" />
<Cell value="E" status="correct" />
<Cell value="S" />
</div>
<p>Das E kommt im Wort an der richtigen Stelle vor.</p>
<div className="flex justify-center mb-1 mt-4">
<Cell value="L" status="present" />
<Cell value="A" />
<Cell value="U" />
<Cell value="C" />
<Cell value="H" />
</div>
<p>Das L kommt im Wort vor, jedoch an anderer Stelle.</p>
<div className="flex justify-center mb-1 mt-4">
<Cell value="O" />
<Cell value="T" />
<Cell value="T" />
<Cell value="O" />
<Cell value="S" status="absent" />
</div>
<p>Das S kommt nicht im Wort vor.</p>
<p className="mt-4">
Jeden Tag um Mitternacht wird ein neues Pördl freigeschaltet.
</p>
<button
type="button"
onClick={handleClose}
className="mt-3 w-full rounded-md border border-transparent shadow-sm px-4 py-2 bg-indigo-600 text-base font-medium text-white hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 sm:text-sm"
>
Spielen
</button>
<p className="mt-5 italic text-sm text-gray-500 dark:text-gray-300">
Pördl ist ein deutschsprachiger Klon von{' '}
<a
href="https://www.nytimes.com/games/wordle/index.html"
className="underline font-bold"
>
Wordle
</a>
.
</p>
</BaseModal>
)
}