feat: add Copa do Mundo 2026 app with groups table and news

This commit is contained in:
Carlos
2026-06-29 09:36:17 +02:00
parent d8fb36e6c3
commit bf97162f4b
3 changed files with 298 additions and 3 deletions
+6 -2
View File
@@ -26,7 +26,10 @@ const ALL_APPS = [
// Educação
{ id: 11, name: "Dicionário", desc: "Significados", path: "/apps/dictionary", icon: "📖", category: "educacao", favorite: false },
{ id: 12, name: "Tradutor", desc: "Multi-idiomas", path: "/apps/translator", icon: "🌐", category: "educacao", favorite: false }
{ id: 12, name: "Tradutor", desc: "Multi-idiomas", path: "/apps/translator", icon: "🌐", category: "educacao", favorite: false },
// Esportes
{ id: 13, name: "Copa do Mundo 2026", desc: "Tabela, grupos, notícias", path: "/apps/worldcup2026", icon: "⚽", category: "esportes", favorite: false }
]
export default function Dashboard() {
@@ -125,7 +128,8 @@ export default function Dashboard() {
selectedCategory === "games" ? "Games" :
selectedCategory === "ferramentas" ? "Ferramentas" :
selectedCategory === "educacao" ? "Educação" :
selectedCategory === "entretenimento" ? "Entretenimento" : "Apps"}
selectedCategory === "entretenimento" ? "Entretenimento" :
selectedCategory === "esportes" ? "Esportes" : "Apps"}
</h2>
<p className="text-gray-500">
{selectedCategory === "all"