diff --git a/app/favicon.ico b/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/app/favicon.ico and /dev/null differ diff --git a/app/globals.css b/app/globals.css index aaec121..18c4300 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,6 +1,8 @@ @import "tailwindcss"; @import "flag-icons/css/flag-icons.min.css"; +@custom-variant hover (&:hover); + @theme { --color-bg: #040d08; --color-card: #0a1810; diff --git a/app/page.tsx b/app/page.tsx index bac34b7..1387567 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -11,15 +11,15 @@ const HOME_QUERY = gql` tournamentStats { totalTournaments totalMatches totalGoals avgGoalsPerGame } liveMatches { id year round group date time isLive scoreFt scoreEt scoreP isQualiPlayoff - team1 { name iso2 } team2 { name iso2 } + team1 { name iso2 slug } team2 { name iso2 slug } } recentMatches(limit: 9) { id year round group date time isLive isQualiPlayoff scoreFt scoreEt scoreP - team1 { name iso2 } team2 { name iso2 } + team1 { name iso2 slug } team2 { name iso2 slug } } upcomingMatches(limit: 9) { id year round group date time isLive isQualiPlayoff scoreFt - team1 { name iso2 } team2 { name iso2 } + team1 { name iso2 slug } team2 { name iso2 slug } } topScorers(year: 2026, limit: 8) { playerName goals penalties ownGoals @@ -80,8 +80,8 @@ interface MatchData { id: number; year: number; round: string; group?: string | null date?: string | null; time?: string | null; isLive: boolean; isQualiPlayoff: boolean scoreFt?: number[] | null; scoreEt?: number[] | null; scoreP?: number[] | null - team1: { name: string; iso2?: string | null } - team2: { name: string; iso2?: string | null } + team1: { name: string; iso2?: string | null; slug?: string | null } + team2: { name: string; iso2?: string | null; slug?: string | null } } export default function HomePage() { @@ -185,15 +185,15 @@ export default function HomePage() {