mirror of
https://github.com/shadoll/sLogos.git
synced 2025-12-20 02:26:05 +00:00
Add new quiz types: Emblem, Logo, and update Geography and Flag quizzes with routing and state
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
export const quizInfo = {
|
||||
name: "capitals",
|
||||
emoji: "🏛️",
|
||||
route: "#/game/capitals",
|
||||
state: "released",
|
||||
title: "Capitals Quiz",
|
||||
icon: "/icons/buildings.svg",
|
||||
description: "Test your knowledge of world capitals.",
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
<script>
|
||||
export const quizInfo = {
|
||||
title: "Capitals Quiz",
|
||||
icon: "/icons/buildings.svg",
|
||||
description: "Test your knowledge of world capitals.",
|
||||
features: [
|
||||
{ icon: "/icons/global.svg", text: "Capitals from every continent" },
|
||||
{ icon: "/icons/medal-ribbon.svg", text: "Perfect rounds and achievements" },
|
||||
{ icon: "/icons/chart-square.svg", text: "Track your progress" }
|
||||
]
|
||||
};
|
||||
</script>
|
||||
14
src/quizInfo/EmblemQuizInfo.js
Normal file
14
src/quizInfo/EmblemQuizInfo.js
Normal file
@@ -0,0 +1,14 @@
|
||||
export const quizInfo = {
|
||||
name: "emblem",
|
||||
emoji: "🛡️",
|
||||
route: "#/game/emblem",
|
||||
state: "scheduled",
|
||||
title: "Emblem Quiz",
|
||||
icon: "/icons/emblem.svg",
|
||||
description: "Test your knowledge of emblems and coats of arms from around the world.",
|
||||
features: [
|
||||
{ icon: "/icons/emblem.svg", text: "Hundreds of emblems" },
|
||||
{ icon: "/icons/medal-ribbon.svg", text: "Unlock achievements" },
|
||||
{ icon: "/icons/chart-square.svg", text: "Track your progress" }
|
||||
]
|
||||
};
|
||||
@@ -1,4 +1,8 @@
|
||||
export const quizInfo = {
|
||||
name: "flags",
|
||||
emoji: "🏳️",
|
||||
route: "#/game/flags",
|
||||
state: "released",
|
||||
title: "Flag Quiz",
|
||||
icon: "/icons/flag.svg",
|
||||
description: "Test your knowledge of world flags.",
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
<script>
|
||||
export const quizInfo = {
|
||||
title: "Flag Quiz",
|
||||
icon: "/icons/flag.svg",
|
||||
description: "Test your knowledge of world flags.",
|
||||
features: [
|
||||
{ icon: "/icons/global.svg", text: "Flags from every continent" },
|
||||
{ icon: "/icons/medal-ribbon.svg", text: "Unlock achievements" },
|
||||
{ icon: "/icons/chart-square.svg", text: "Track your progress" }
|
||||
]
|
||||
};
|
||||
</script>
|
||||
@@ -1,4 +1,8 @@
|
||||
export const quizInfo = {
|
||||
name: "geography",
|
||||
emoji: "🗺️",
|
||||
route: "#/game/geography",
|
||||
state: "testing",
|
||||
title: "Geography Quiz",
|
||||
icon: "/icons/map.svg",
|
||||
description: "Test your knowledge of world geography by identifying countries from their map shapes.",
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
<script>
|
||||
export const quizInfo = {
|
||||
title: "Geography Quiz",
|
||||
icon: "/icons/map.svg",
|
||||
description: "Test your knowledge of world geography by identifying countries from their map shapes.",
|
||||
features: [
|
||||
{ icon: "/icons/global.svg", text: "Countries from every continent" },
|
||||
{ icon: "/icons/map.svg", text: "Unique map-based questions" },
|
||||
{ icon: "/icons/chart-square.svg", text: "Track your progress" }
|
||||
]
|
||||
};
|
||||
</script>
|
||||
14
src/quizInfo/LogoQuizInfo.js
Normal file
14
src/quizInfo/LogoQuizInfo.js
Normal file
@@ -0,0 +1,14 @@
|
||||
export const quizInfo = {
|
||||
name: "logo",
|
||||
emoji: "⚜️",
|
||||
route: "#/game/logo",
|
||||
state: "scheduled",
|
||||
title: "Logo Quiz",
|
||||
icon: "/icons/logo.svg",
|
||||
description: "Test your knowledge of company and brand logos.",
|
||||
features: [
|
||||
{ icon: "/icons/brand.svg", text: "Hundreds of logos" },
|
||||
{ icon: "/icons/medal-ribbon.svg", text: "Unlock achievements" },
|
||||
{ icon: "/icons/chart-square.svg", text: "Track your progress" }
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user