Add new quiz types: Emblem, Logo, and update Geography and Flag quizzes with routing and state

This commit is contained in:
sHa
2025-08-14 15:44:33 +03:00
parent ecc09b6b9a
commit 2434f5f6d6
8 changed files with 40 additions and 36 deletions

View File

@@ -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.",

View File

@@ -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>

View 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" }
]
};

View File

@@ -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.",

View File

@@ -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>

View File

@@ -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.",

View File

@@ -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>

View 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" }
]
};