diff --git a/components/CategoryMenu.jsx b/components/CategoryMenu.jsx index 8131698..9182868 100644 --- a/components/CategoryMenu.jsx +++ b/components/CategoryMenu.jsx @@ -7,7 +7,8 @@ const CATEGORIES = [ { id: 'games', name: 'Games', icon: '🎮' }, { id: 'ferramentas', name: 'Ferramentas', icon: '🛠️' }, { id: 'educacao', name: 'Educação', icon: '📚' }, - { id: 'entretenimento', name: 'Entretenimento', icon: '🎬' } + { id: 'entretenimento', name: 'Entretenimento', icon: '🎬' }, + { id: 'esportes', name: 'Esportes', icon: '⚽' } ] export default function CategoryMenu({ selectedCategory, onSelect }) { diff --git a/pages/apps/worldcup2026/index.jsx b/pages/apps/worldcup2026/index.jsx new file mode 100644 index 0000000..3b3acbb --- /dev/null +++ b/pages/apps/worldcup2026/index.jsx @@ -0,0 +1,290 @@ +import { useState, useEffect } from "react" +import { useSession } from "next-auth/react" +import { useRouter } from "next/router" + +// Copa do Mundo 2026 - Grupos e Classificação (48 seleções, 12 grupos de 4) +const worldCupGroups = { + A: [ + { team: "Canadá", flag: "🇨🇦", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "México", flag: "🇲🇽", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Estados Unidos", flag: "🇺🇸", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + B: [ + { team: "Argentina", flag: "🇦🇷", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Paraguai", flag: "🇵🇾", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Chile", flag: "🇨🇱", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + C: [ + { team: "Brasil", flag: "🇧🇷", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Colômbia", flag: "🇨🇴", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Uruguai", flag: "🇺🇾", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + D: [ + { team: "França", flag: "🇫🇷", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Portugal", flag: "🇵🇹", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Espanha", flag: "🇪🇸", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + E: [ + { team: "Alemanha", flag: "🇩🇪", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Inglaterra", flag: "🇬🇧", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Itália", flag: "🇮🇹", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + F: [ + { team: "Holanda", flag: "🇳🇱", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Bélgica", flag: "🇧🇪", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Croácia", flag: "🇭🇷", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + G: [ + { team: "Marrocos", flag: "🇲🇦", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Senegal", flag: "🇸🇳", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Tunísia", flag: "🇹🇳", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + H: [ + { team: "Japão", flag: "🇯🇵", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Coreia do Sul", flag: "🇰🇷", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Austrália", flag: "🇦🇺", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + I: [ + { team: "Irã", flag: "🇮🇷", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Arábia Saudita", flag: "🇸🇦", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Catar", flag: "🇶🇦", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + J: [ + { team: "Nigéria", flag: "🇳🇬", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Gana", flag: "🇬🇭", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Camarões", flag: "🇨🇲", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + K: [ + { team: "Equador", flag: "🇪🇨", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Peru", flag: "🇵🇪", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Venezuela", flag: "🇻🇪", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], + L: [ + { team: "Polônia", flag: "🇵🇱", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Sérvia", flag: "🇷🇸", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "Suíça", flag: "🇨🇭", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + { team: "TBD (Repescagem)", flag: "🏳️", played: 0, won: 0, drawn: 0, lost: 0, gf: 0, ga: 0, gd: 0, points: 0 }, + ], +} + +// Últimas notícias da Copa 2026 (simuladas - RSS/API pública) +const worldCupNews = [ + { id: 1, category: "PREPARAÇÃO", title: "FIFA Confirma 16 Cidades-Sede para Copa 2026", summary: "Estados Unidos (11), México (3) e Canadá (2) receberão jogos. Final será no MetLife Stadium, Nova Jersey.", date: "2026-06-25", views: "450K", trend: "+120%" }, + { id: 2, category: "BRASIL", title: "Brasil Enfrenta Argentina em Amistoso Preparatório", summary: "Clássico sul-americano marcado para setembro no Morumbi. Dorival Jr. testa nova formação com Endrick e Vini Jr.", date: "2026-06-24", views: "890K", trend: "+340%" }, + { id: 3, category: "SEDES", title: "Estadio Azteca Passará por Reforma de $200M", summary: "Único estádio a sediar 3 Copas do Mundo (1970, 1986, 2026). Modernização inclui nova tecnologia de gramado híbrido.", date: "2026-06-23", views: "234K", trend: "+87%" }, + { id: 4, category: "FORMATO", title: "Novo Formato: 48 Seleções, 12 Grupos, 104 Jogos", summary: "Fase de grupos com 3 times classificados por grupo + 8 melhores terceiros. Oitavas de final expandidas.", date: "2026-06-22", views: "567K", trend: "+156%" }, + { id: 5, category: "BRASIL", title: "Neymar Recupera-se de Lesão e Treina com Bola", summary: "Craque do Al-Hilal evolui bem na reabilitação. Médicos otimistas para disputa da Copa 2026 aos 34 anos.", date: "2026-06-21", views: "723K", trend: "+234%" }, + { id: 6, category: "INGRESSOS", title: "Venda de Ingressos Inicia em Janeiro 2026", summary: "Fase 1: sorteio para residentes dos países-sede. Preços variam de $50 a $1.600. Demanda prevista: 5M ingressos.", date: "2026-06-20", views: "389K", trend: "+98%" }, + { id: 7, category: "TECNOLOGIA", title: "VAR 2.0 com IA em Tempo Real Estreia na Copa", summary: "Novo sistema reduz tempo de decisão para 15 segundos. Câmeras 4K + sensores na bola detectam impedimento milimétrico.", date: "2026-06-19", views: "278K", trend: "+112%" }, + { id: 8, category: "SUSTENTABILIDADE", title: "Copa 2026 Será Carbono Neutro", summary: "FIFA compromete-se com compensação total. Transporte público gratuito para torcedores com ingresso nos dias de jogo.", date: "2026-06-18", views: "189K", trend: "+78%" }, + { id: 9, category: "ELIMINATÓRIAS", title: "Brasil Lidera Eliminatórias Sul-Americanas", summary: "Seleção tem 30 pontos em 14 jogos. Argentina e Uruguai completam top 3. Próximos jogos: Bolívia (casa) e Peru (fora).", date: "2026-06-17", views: "456K", trend: "+134%" }, + { id: 10, category: "ESTRELAS", title: "Mbappé, Haaland e Bellingham: A Nova Geração", summary: "França, Noruega e Inglaterra apostam em astros sub-25. Copa 2026 pode ser última de Messi e Cristiano Ronaldo.", date: "2026-06-26", views: "612K", trend: "+189%" }, + { id: 11, category: "HISTÓRIA", title: "Primeira Copa com 3 Países-Sede na História", summary: "Inédito: EUA, México e Canadá dividem organização. México será único a sediar 3 Copas (1970, 1986, 2026).", date: "2026-06-16", views: "345K", trend: "+95%" }, + { id: 12, category: "BRASIL", title: "CBF Anuncia Concentração em Orlando Para em Miami para Fase de Grupos", summary: "Estrutura de 5 estrelas com campos oficiais FIFA. Climas similares aos das cidades-sede americanas.", date: "2026-06-15", views: "298K", trend: "+103%" }, +] + +export default function WorldCup2026() { + const { data: session } = useSession() + const router = useRouter() + const [selectedGroup, setSelectedGroup] = useState("TODOS") + const [selectedCategory, setSelectedCategory] = useState("TODAS") + const [filteredNews, setFilteredNews] = useState(worldCupNews) + + useEffect(() => { + if (selectedCategory === "TODAS") { + setFilteredNews(worldCupNews) + } else { + setFilteredNews(worldCupNews.filter(n => n.category === selectedCategory)) + } + }, [selectedCategory]) + + const groups = ["TODOS", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L"] + const newsCategories = ["TODAS", "PREPARAÇÃO", "BRASIL", "SEDES", "FORMATO", "INGRESSOS", "TECNOLOGIA", "SUSTENTABILIDADE", "ELIMINATÓRIAS", "ESTRELAS", "HISTÓRIA"] + + // Ordenar times por pontos, saldo, gols pró + const sortStandings = (teams) => { + return [...teams].sort((a, b) => { + if (b.points !== a.points) return b.points - a.points + if (b.gd !== a.gd) return b.gd - a.gd + return b.gf - a.gf + }) + } + + const getGroupsToShow = () => { + if (selectedGroup === "TODOS") return Object.keys(worldCupGroups) + return [selectedGroup] + } + + return ( +
+ {/* Header */} + + +
+ {/* Filtros de Grupo */} +
+ {groups.map(grp => ( + + ))} +
+ + {/* Tabelas de Classificação por Grupo */} +
+ {getGroupsToShow().map(groupKey => { + const teams = sortStandings(worldCupGroups[groupKey]) + return ( +
+
+

Grupo {groupKey}

+
+
+ + + + + + + + + + + + + + + + + {teams.map((team, idx) => ( + + + + + + + + + + + + + ))} + +
#SeleçãoJVEDGPGCSGPts
{idx + 1} + {team.flag} + {team.team} + {team.played}{team.won}{team.drawn}{team.lost}{team.gf}{team.ga}{team.gd >= 0 ? "+" : ""}{team.gd}{team.points}
+
+
+ Top 2 classificam direto • 8 melhores terceiros avançam • J = Jogos, V = Vitórias, E = Empates, D = Derrotas, GP = Gols Pró, GC = Gols Contra, SG = Saldo, Pts = Pontos +
+
+ ) + })} +
+ + {/* Separador Notícias */} +
+

Últimas Notícias da Copa 2026

+
+ + {/* Filtros de Categoria Notícias */} +
+ {newsCategories.map(cat => ( + + ))} +
+ + {/* Grid de Notícias - 2 colunas */} +
+ {filteredNews.length > 0 ? ( + filteredNews.map((news, idx) => ( +
+
+ + {news.category} + +
+ {news.trend} + {news.views} views +
+
+ +

+ #{idx + 1} {news.title} +

+ +

+ {news.summary} +

+ +
+ {new Date(news.date).toLocaleDateString('pt-BR', { + weekday: 'short', + month: 'short', + day: 'numeric' + })} +
+
+ )) + ) : ( +
+

Nenhuma notícia nesta categoria

+
+ )} +
+ + {/* Footer */} +
+

Copa do Mundo FIFA 2026 • 48 Seleções • 12 Grupos • 104 Jogos

+

Sedes: EUA (11), México (3), Canadá (2) • Junho/Julho 2026

+

Mostrando {filteredNews.length} de {worldCupNews.length} notícias • Grupos: fase inicial (0 jogos)

+
+
+
+ ) +} \ No newline at end of file diff --git a/pages/dashboard.jsx b/pages/dashboard.jsx index 0e0b153..fa0c320 100644 --- a/pages/dashboard.jsx +++ b/pages/dashboard.jsx @@ -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"}

{selectedCategory === "all"