forked from thesam73/wordle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfoModal.tsx
89 lines (82 loc) · 2.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { Cell } from '../grid/Cell'
import { BaseModal } from './BaseModal'
type Props = {
isOpen: boolean
handleClose: () => void
}
export const InfoModal = ({ isOpen, handleClose }: Props) => {
return (
<BaseModal title="Cum se joacă" isOpen={isOpen} handleClose={handleClose}>
<p className="text-sm text-gray-500 dark:text-gray-300">
Ghiciți CUVÂNTUL în 6 încercări. După fiecare ghicire, culorile
literelor se vor schimba pentru a arăta cât de aproape a fost estimarea
la cuvânt.
</p>
<div className="flex justify-center mb-1 mt-4">
<Cell isRevealing={true}
isCompleted={true}
value="A"
status="correct"
/>
<Cell value="L" />
<Cell value="I" />
<Cell value="N" />
<Cell value="T" />
</div>
<p className="text-sm text-gray-500 dark:text-gray-300">
Litera A este în cuvânt și în locul corect.
</p>
<div className="flex justify-center mb-1 mt-4">
<Cell value="A" />
<Cell value="L" />
<Cell
isRevealing={true}
isCompleted={true}
value="T"
status="present"
/>
<Cell value="O" />
<Cell value="R" />
</div>
<p className="text-sm text-gray-500 dark:text-gray-300">
Litera T este în cuvânt, dar în locul greșit.
</p>
<div className="flex justify-center mb-1 mt-4">
<Cell value="U" />
<Cell
isRevealing={true}
isCompleted={true}
value="Z"
status="absent"
/>
<Cell value="A" />
<Cell value="T" />
<Cell value="E" />
</div>
<p className="text-sm text-gray-500 dark:text-gray-300">
Litera Z nu este în cuvânt în niciun loc.
</p>
<hr className="mt-4 mb-4" />
<p className="text-sm text-gray--500 dark:text-gray-300">
<b>Un cuvânt nou va fi disponibil în fiecare zi!</b>
</p>
<hr className="mt-4 mb-4" />
<p className="mt-6 italic text-sm text-gray-500 dark:text-gray-300">
Acest joc este o clonă{' '}
<a
href="https://github.com/savANDY/wordle"
className="underline font-bold"
>
open source
</a>{' '}
a jocului original Wordle pe care îl puteți juca{' '}
<a
href="https://www.nytimes.com/games/wordle/index.html"
className="underline font-bold"
>
aici
</a>.
</p>
</BaseModal>
)
}