-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
68 lines (68 loc) · 2.08 KB
/
db.json
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
{
"bg": "https://images.unsplash.com/photo-1580927752452-89d86da3fa0a?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80",
"title": "React Quiz",
"description": "Teste os seus conhecimentos sobre React e vamos ver quantas aplicações você vai deixar de quebrar!",
"questions": [
{
"image": "https://media.giphy.com/media/xUOxf3yDKCuwpOlT3i/giphy.gif",
"title": "O react é o que? um(a) ...",
"description": "Essa é pra aquecer",
"answer": 1,
"alternatives": [
"Framework",
"Biblioteca",
"Linguagem",
"Componente"
]
},
{
"image": "https://media.giphy.com/media/13FrpeVH09Zrb2/giphy.gif",
"title": "O react se destaca em qual área?",
"description": "Faz tempo em haha",
"answer": 1,
"alternatives": [
"Backend",
"Frontend"
]
},
{
"image": "https://media.giphy.com/media/13FrpeVH09Zrb2/giphy.gif",
"title": "O react precisa de que para retornar a sintaxe html?",
"description": "Faz tempo em haha",
"answer": 0,
"alternatives": [
"Babel",
"Python",
"Ruby",
"JSX"
]
},
{
"image": "https://media.giphy.com/media/13FrpeVH09Zrb2/giphy.gif",
"title": "Qual a maneira correta de escrever um useEffect?",
"description": "Faz tempo em haha",
"answer": 2,
"alternatives": [
"const useEffect = function(){},[]",
"useEffect(funcion() {})",
"useEffect(() => {}, [])"
]
}
],
"external": [
"https://aluraquiz-base-git-main.alura-challenges.vercel.app"
],
"theme": {
"colors": {
"primary": "#2196f3",
"secondary": "#e91e63",
"buttonHover": "#a31545",
"inputFocus": "#1769aa",
"mainBg": "#212121",
"contrastText": "#FFFFFF",
"wrong": "#f44336",
"success": "#4CAF50"
},
"borderRadius": "4px"
}
}