-
Notifications
You must be signed in to change notification settings - Fork 0
/
InfoModal.tsx
89 lines (83 loc) · 3.54 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="ಆಟದ ನಿಯಮಗಳು" isOpen={isOpen} handleClose={handleClose}>
<a href="https://youtu.be/08XuE_kq2L0" className="underline font-bold">
👉 ಹೇಗೆ ಆಡುವುದು? ▶️ 👈
</a>
<br />
<br />
<p className="text-sm text-gray-500 dark:text-gray-300">
ಆರು ಪ್ರಯತ್ನಗಳಲ್ಲಿ ಪದವನ್ನು ಊಹಿಸಿ. ಪ್ರತಿ ಊಹೆಯ ನಂತರ, ಚೌಕದ ಬಣ್ಣವು
ಬದಲಾಯಿಸುತ್ತದೆ. ಚೌಕದ ಬಣ್ಣ, ಪದಕ್ಕೆ ನಿಮ್ಮ ಊಹೆ ಎಷ್ಟು ಹತ್ತಿರವಾಗಿತ್ತು
ಎಂಬುದನ್ನು ತೋರಿಸಲು ಸಹಾಯಕ.
</p>
<div className="flex justify-center mb-1 mt-4">
<Cell
isRevealing={true}
isCompleted={true}
value="ವಂ"
status={{ status: 'correct', actual: '' }}
/>
<Cell value="ದ" />
<Cell value="ನೆ" />
</div>
<p className="text-sm text-gray-500 dark:text-gray-300">
ವಂ ಅಕ್ಷರವು ಪದದಲ್ಲಿ ಇದೆ ಮತ್ತು ಸರಿಯಾದ ಸ್ಥಳದಲ್ಲಿದೆ.
</p>
<div className="flex justify-center mb-1 mt-4">
<Cell value="ಭಾ" />
<Cell
isRevealing={true}
isCompleted={true}
value="ರ"
status={{ status: 'present', actual: 'ರೂ' }}
/>
<Cell value="ತ" />
</div>
<p className="text-sm text-gray-500 dark:text-gray-300">
ರ ಅಕ್ಷರವು ಪದದಲ್ಲಿದೆ ಆದರೆ ತಪ್ಪಾದ ಸ್ಥಳದಲ್ಲಿದೆ. ಊಹಿಸಿದ ಅಕ್ಷರ ಒತ್ತಕ್ಷರ
ಸಹಿತವಾಗಬೇಕಾದ್ದಲ್ಲಿ, ಅದನ್ನು ಚೌಕದ ತಳ ಎಡ ತುದಿಯಲ್ಲಿ ತಿಳಿಸಲಾಗುವುದು. ಇಲ್ಲಿ ರೂ
ಬೇಕಾದ ಅಕ್ಷರ.
</p>
<div className="flex justify-center mb-1 mt-4">
<Cell value="ಗೆ" />
<Cell value="ಳೆ" />
<Cell
value="ಯ"
isRevealing={true}
isCompleted={true}
status={{ status: 'absent', actual: '' }}
/>
</div>
<p className="text-sm text-gray-500 dark:text-gray-300">
ಯ ಅಕ್ಷರವು ಪದದಲ್ಲಿಲ್ಲ.
</p>
<p className="mt-6 italic text-sm text-gray-500 dark:text-gray-300">
ಇದು ನಮ್ಮೆಲರ ಪ್ರೀತಿಯ ಪದ ಊಹಿಸುವ ಆಟದ ಮುಕ್ತ ಮೂಲ ಆವೃತ್ತಿಯ ಕನ್ನಡ ಅವತರಣಿಕೆ -{' '}
<a
href="https://github.com/Omkar-Shetkar/wordle-kannada"
className="underline font-bold"
>
ಇಲ್ಲಿ ಕೋಡ್ ಪರಿಶೀಲಿಸಿ
</a>{' '}
</p>
<p className="mt-6 italic text-sm text-gray-500 dark:text-gray-300">
ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಸಂಪರ್ಕಿಸಿ:
<a
href="https://twitter.com/OmkarShetkar"
className="underline font-bold"
>
@OmkarShetkar
</a>
<br />
Email: [email protected]
</p>
</BaseModal>
)
}