Skip to content

Commit

Permalink
Create db.json for database
Browse files Browse the repository at this point in the history
  • Loading branch information
TheeDouglasAM3 committed Jan 25, 2021
1 parent c2f5858 commit fc6c6b4
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pokemon-quiz-nextjs/db.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"bg": "https://images.alphacoders.com/103/thumb-1920-1039414.png",
"title": "Quiz de Pokémon",
"description": "Teste os seus conhecimentos sobre Pokémon e vamos pegar todos!",
"questions": [
{
"image": "https://media.giphy.com/media/xUOxf3yDKCuwpOlT3i/giphy.gif",
"title": "Como fazer um seletor por id via CSS?",
"description": "Essa é pra aquecer",
"answer": 2,
"alternatives": [
".elemento",
"*elemento",
"#elemento",
"%elemento"
]
},
{
"image": "https://media.giphy.com/media/13FrpeVH09Zrb2/giphy.gif",
"title": "Como fazer um background gradiente com css?",
"description": "Faz tempo em haha",
"answer": 0,
"alternatives": [
"background: linear-gradient(#e66465, #9198e5);",
"background: gradient(#e66465, #9198e5);"
]
}
],
"external": [
""
],
"theme": {
"colors": {
"primary": "#EB2117",
"secondary": "#8C27E8",
"mainBg": "#171B35",
"contrastText": "#FFFFFF",
"wrong": "#FF5722",
"success": "#4CAF50"
},
"borderRadius": "4px"
}
}

0 comments on commit fc6c6b4

Please sign in to comment.