wc26-mcp 0.2.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +75 -20
- package/dist/data/city-guides.d.ts +2 -0
- package/dist/data/city-guides.js +373 -0
- package/dist/data/fan-zones.d.ts +2 -0
- package/dist/data/fan-zones.js +646 -0
- package/dist/data/groups.js +0 -1
- package/dist/data/historical-matchups.d.ts +2 -0
- package/dist/data/historical-matchups.js +556 -0
- package/dist/data/injuries.d.ts +2 -0
- package/dist/data/injuries.js +197 -0
- package/dist/data/matches.js +48 -48
- package/dist/data/news.d.ts +2 -0
- package/dist/data/news.js +171 -0
- package/dist/data/odds.d.ts +2 -0
- package/dist/data/odds.js +53 -0
- package/dist/data/team-profiles.js +47 -48
- package/dist/data/teams.js +0 -1
- package/dist/data/venues.js +0 -1
- package/dist/data/visa-info.d.ts +2 -0
- package/dist/data/visa-info.js +1190 -0
- package/dist/index.js +1006 -25
- package/dist/types/index.d.ts +114 -0
- package/dist/types/index.js +0 -1
- package/package.json +17 -2
- package/dist/data/groups.js.map +0 -1
- package/dist/data/matches.js.map +0 -1
- package/dist/data/team-profiles.js.map +0 -1
- package/dist/data/teams.js.map +0 -1
- package/dist/data/venues.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/types/index.js.map +0 -1
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
export const injuries = [
|
|
2
|
+
// ── Argentina ──
|
|
3
|
+
{
|
|
4
|
+
player: "Lionel Messi",
|
|
5
|
+
team_id: "arg",
|
|
6
|
+
position: "Forward",
|
|
7
|
+
injury: "Undisclosed injury announced by Inter Miami",
|
|
8
|
+
status: "doubtful",
|
|
9
|
+
expected_return: "TBD",
|
|
10
|
+
last_updated: "2026-02-11",
|
|
11
|
+
source: "Marca",
|
|
12
|
+
},
|
|
13
|
+
// ── Brazil ──
|
|
14
|
+
{
|
|
15
|
+
player: "Neymar",
|
|
16
|
+
team_id: "bra",
|
|
17
|
+
position: "Forward",
|
|
18
|
+
injury: "Long-term fitness concerns — future in Carlo Ancelotti's hands",
|
|
19
|
+
status: "doubtful",
|
|
20
|
+
expected_return: "Unknown",
|
|
21
|
+
last_updated: "2026-02-08",
|
|
22
|
+
source: "Marca",
|
|
23
|
+
},
|
|
24
|
+
// ── England ──
|
|
25
|
+
{
|
|
26
|
+
player: "Jude Bellingham",
|
|
27
|
+
team_id: "eng",
|
|
28
|
+
position: "Midfielder",
|
|
29
|
+
injury: "Injury concern — Real Madrid and England monitoring",
|
|
30
|
+
status: "recovering",
|
|
31
|
+
expected_return: "Before tournament",
|
|
32
|
+
last_updated: "2026-02-01",
|
|
33
|
+
source: "BBC Sport",
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
player: "Luke Shaw",
|
|
37
|
+
team_id: "eng",
|
|
38
|
+
position: "Defender",
|
|
39
|
+
injury: "Recurring hamstring issues — fitness management ongoing",
|
|
40
|
+
status: "recovering",
|
|
41
|
+
expected_return: "Before tournament",
|
|
42
|
+
last_updated: "2026-02-06",
|
|
43
|
+
source: "The Guardian",
|
|
44
|
+
},
|
|
45
|
+
// ── France ──
|
|
46
|
+
{
|
|
47
|
+
player: "N'Golo Kante",
|
|
48
|
+
team_id: "fra",
|
|
49
|
+
position: "Midfielder",
|
|
50
|
+
injury: "Hamstring injury sustained in Saudi Pro League — racing to be fit",
|
|
51
|
+
status: "doubtful",
|
|
52
|
+
expected_return: "May 2026",
|
|
53
|
+
last_updated: "2026-02-09",
|
|
54
|
+
source: "L'Equipe",
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
player: "Lucas Hernandez",
|
|
58
|
+
team_id: "fra",
|
|
59
|
+
position: "Defender",
|
|
60
|
+
injury: "ACL tear — second major knee injury in career",
|
|
61
|
+
status: "out",
|
|
62
|
+
expected_return: "Unlikely for tournament",
|
|
63
|
+
last_updated: "2026-01-28",
|
|
64
|
+
source: "L'Equipe",
|
|
65
|
+
},
|
|
66
|
+
// ── Spain ──
|
|
67
|
+
{
|
|
68
|
+
player: "Gavi",
|
|
69
|
+
team_id: "esp",
|
|
70
|
+
position: "Midfielder",
|
|
71
|
+
injury: "ACL recovery — long road back from November 2023 injury",
|
|
72
|
+
status: "recovering",
|
|
73
|
+
expected_return: "Before tournament",
|
|
74
|
+
last_updated: "2026-02-03",
|
|
75
|
+
source: "Marca",
|
|
76
|
+
},
|
|
77
|
+
// ── Germany ──
|
|
78
|
+
{
|
|
79
|
+
player: "Leroy Sane",
|
|
80
|
+
team_id: "ger",
|
|
81
|
+
position: "Forward",
|
|
82
|
+
injury: "Groin surgery recovery — Bayern managing his return",
|
|
83
|
+
status: "recovering",
|
|
84
|
+
expected_return: "April 2026",
|
|
85
|
+
last_updated: "2026-02-07",
|
|
86
|
+
source: "Kicker",
|
|
87
|
+
},
|
|
88
|
+
// ── Belgium ──
|
|
89
|
+
{
|
|
90
|
+
player: "Thibaut Courtois",
|
|
91
|
+
team_id: "bel",
|
|
92
|
+
position: "Goalkeeper",
|
|
93
|
+
injury: "ACL recovery — returned to action but managing workload",
|
|
94
|
+
status: "recovering",
|
|
95
|
+
expected_return: "Fit for tournament",
|
|
96
|
+
last_updated: "2026-02-05",
|
|
97
|
+
source: "ESPN",
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
player: "Romelu Lukaku",
|
|
101
|
+
team_id: "bel",
|
|
102
|
+
position: "Forward",
|
|
103
|
+
injury: "Recurring thigh muscle issues — managing fitness carefully",
|
|
104
|
+
status: "recovering",
|
|
105
|
+
expected_return: "Before tournament",
|
|
106
|
+
last_updated: "2026-02-04",
|
|
107
|
+
source: "BBC Sport",
|
|
108
|
+
},
|
|
109
|
+
// ── Portugal ──
|
|
110
|
+
{
|
|
111
|
+
player: "Diogo Jota",
|
|
112
|
+
team_id: "por",
|
|
113
|
+
position: "Forward",
|
|
114
|
+
injury: "Knee ligament damage — extended rehabilitation",
|
|
115
|
+
status: "doubtful",
|
|
116
|
+
expected_return: "May 2026",
|
|
117
|
+
last_updated: "2026-02-10",
|
|
118
|
+
source: "ESPN",
|
|
119
|
+
},
|
|
120
|
+
// ── Netherlands ──
|
|
121
|
+
{
|
|
122
|
+
player: "Frenkie de Jong",
|
|
123
|
+
team_id: "ned",
|
|
124
|
+
position: "Midfielder",
|
|
125
|
+
injury: "Ankle injury — persistent issue from Euro 2024",
|
|
126
|
+
status: "recovering",
|
|
127
|
+
expected_return: "Before tournament",
|
|
128
|
+
last_updated: "2026-02-02",
|
|
129
|
+
source: "De Telegraaf",
|
|
130
|
+
},
|
|
131
|
+
// ── Norway ──
|
|
132
|
+
{
|
|
133
|
+
player: "Erling Haaland",
|
|
134
|
+
team_id: "nor",
|
|
135
|
+
position: "Forward",
|
|
136
|
+
injury: "No current injury — form and confidence being monitored",
|
|
137
|
+
status: "fit",
|
|
138
|
+
expected_return: "N/A",
|
|
139
|
+
last_updated: "2026-02-10",
|
|
140
|
+
source: "The Guardian",
|
|
141
|
+
},
|
|
142
|
+
// ── USA ──
|
|
143
|
+
{
|
|
144
|
+
player: "Gio Reyna",
|
|
145
|
+
team_id: "usa",
|
|
146
|
+
position: "Midfielder",
|
|
147
|
+
injury: "Hamstring strain — out of Borussia Dortmund training",
|
|
148
|
+
status: "recovering",
|
|
149
|
+
expected_return: "March 2026",
|
|
150
|
+
last_updated: "2026-02-08",
|
|
151
|
+
source: "ESPN",
|
|
152
|
+
},
|
|
153
|
+
// ── South Korea ──
|
|
154
|
+
{
|
|
155
|
+
player: "Son Heung-min",
|
|
156
|
+
team_id: "kor",
|
|
157
|
+
position: "Forward",
|
|
158
|
+
injury: "Calf muscle fatigue — Tottenham managing minutes",
|
|
159
|
+
status: "fit",
|
|
160
|
+
expected_return: "N/A",
|
|
161
|
+
last_updated: "2026-02-11",
|
|
162
|
+
source: "BBC Sport",
|
|
163
|
+
},
|
|
164
|
+
// ── Croatia ──
|
|
165
|
+
{
|
|
166
|
+
player: "Luka Modric",
|
|
167
|
+
team_id: "cro",
|
|
168
|
+
position: "Midfielder",
|
|
169
|
+
injury: "Age-related fitness management — Real Madrid reducing minutes",
|
|
170
|
+
status: "fit",
|
|
171
|
+
expected_return: "N/A",
|
|
172
|
+
last_updated: "2026-02-09",
|
|
173
|
+
source: "Marca",
|
|
174
|
+
},
|
|
175
|
+
// ── Senegal ──
|
|
176
|
+
{
|
|
177
|
+
player: "Sadio Mane",
|
|
178
|
+
team_id: "sen",
|
|
179
|
+
position: "Forward",
|
|
180
|
+
injury: "Knee soreness — Al-Nassr managing workload ahead of World Cup",
|
|
181
|
+
status: "recovering",
|
|
182
|
+
expected_return: "Before tournament",
|
|
183
|
+
last_updated: "2026-02-06",
|
|
184
|
+
source: "ESPN",
|
|
185
|
+
},
|
|
186
|
+
// ── Colombia ──
|
|
187
|
+
{
|
|
188
|
+
player: "Luis Diaz",
|
|
189
|
+
team_id: "col",
|
|
190
|
+
position: "Forward",
|
|
191
|
+
injury: "Knee ligament sprain — Liverpool monitoring recovery timeline",
|
|
192
|
+
status: "recovering",
|
|
193
|
+
expected_return: "April 2026",
|
|
194
|
+
last_updated: "2026-02-05",
|
|
195
|
+
source: "ESPN",
|
|
196
|
+
},
|
|
197
|
+
];
|
package/dist/data/matches.js
CHANGED
|
@@ -667,7 +667,7 @@ export const matches = [
|
|
|
667
667
|
venue_id: "gillette",
|
|
668
668
|
group: "C",
|
|
669
669
|
round: "Group Stage",
|
|
670
|
-
home_team_id: "
|
|
670
|
+
home_team_id: "hai",
|
|
671
671
|
away_team_id: "bra",
|
|
672
672
|
status: "scheduled",
|
|
673
673
|
},
|
|
@@ -679,8 +679,8 @@ export const matches = [
|
|
|
679
679
|
venue_id: "hard_rock",
|
|
680
680
|
group: "C",
|
|
681
681
|
round: "Group Stage",
|
|
682
|
-
home_team_id: "
|
|
683
|
-
away_team_id: "
|
|
682
|
+
home_team_id: "sco",
|
|
683
|
+
away_team_id: "mar",
|
|
684
684
|
status: "scheduled",
|
|
685
685
|
},
|
|
686
686
|
{
|
|
@@ -902,7 +902,8 @@ export const matches = [
|
|
|
902
902
|
},
|
|
903
903
|
// ════════════════════════════════════════════════════════════════
|
|
904
904
|
// ROUND OF 32 (June 29 – July 3)
|
|
905
|
-
// 16 matches —
|
|
905
|
+
// 16 matches — official FIFA bracket structure
|
|
906
|
+
// 12 group winners + 12 runners-up + 8 best 3rd-place = 32 teams
|
|
906
907
|
// ════════════════════════════════════════════════════════════════
|
|
907
908
|
{
|
|
908
909
|
id: "m73",
|
|
@@ -913,8 +914,8 @@ export const matches = [
|
|
|
913
914
|
round: "Round of 32",
|
|
914
915
|
home_team_id: null,
|
|
915
916
|
away_team_id: null,
|
|
916
|
-
home_placeholder: "
|
|
917
|
-
away_placeholder: "
|
|
917
|
+
home_placeholder: "2A",
|
|
918
|
+
away_placeholder: "2B",
|
|
918
919
|
status: "scheduled",
|
|
919
920
|
},
|
|
920
921
|
{
|
|
@@ -922,12 +923,12 @@ export const matches = [
|
|
|
922
923
|
match_number: 74,
|
|
923
924
|
date: "2026-06-29",
|
|
924
925
|
time_utc: "22:00",
|
|
925
|
-
venue_id: "
|
|
926
|
+
venue_id: "gillette",
|
|
926
927
|
round: "Round of 32",
|
|
927
928
|
home_team_id: null,
|
|
928
929
|
away_team_id: null,
|
|
929
|
-
home_placeholder: "
|
|
930
|
-
away_placeholder: "
|
|
930
|
+
home_placeholder: "1E",
|
|
931
|
+
away_placeholder: "3A/B/C/D/F",
|
|
931
932
|
status: "scheduled",
|
|
932
933
|
},
|
|
933
934
|
{
|
|
@@ -935,12 +936,12 @@ export const matches = [
|
|
|
935
936
|
match_number: 75,
|
|
936
937
|
date: "2026-06-30",
|
|
937
938
|
time_utc: "17:00",
|
|
938
|
-
venue_id: "
|
|
939
|
+
venue_id: "bbva",
|
|
939
940
|
round: "Round of 32",
|
|
940
941
|
home_team_id: null,
|
|
941
942
|
away_team_id: null,
|
|
942
|
-
home_placeholder: "
|
|
943
|
-
away_placeholder: "
|
|
943
|
+
home_placeholder: "1F",
|
|
944
|
+
away_placeholder: "2C",
|
|
944
945
|
status: "scheduled",
|
|
945
946
|
},
|
|
946
947
|
{
|
|
@@ -948,12 +949,12 @@ export const matches = [
|
|
|
948
949
|
match_number: 76,
|
|
949
950
|
date: "2026-06-30",
|
|
950
951
|
time_utc: "19:00",
|
|
951
|
-
venue_id: "
|
|
952
|
+
venue_id: "nrg",
|
|
952
953
|
round: "Round of 32",
|
|
953
954
|
home_team_id: null,
|
|
954
955
|
away_team_id: null,
|
|
955
956
|
home_placeholder: "1C",
|
|
956
|
-
away_placeholder: "
|
|
957
|
+
away_placeholder: "2F",
|
|
957
958
|
status: "scheduled",
|
|
958
959
|
},
|
|
959
960
|
{
|
|
@@ -961,12 +962,12 @@ export const matches = [
|
|
|
961
962
|
match_number: 77,
|
|
962
963
|
date: "2026-06-30",
|
|
963
964
|
time_utc: "22:00",
|
|
964
|
-
venue_id: "
|
|
965
|
+
venue_id: "metlife",
|
|
965
966
|
round: "Round of 32",
|
|
966
967
|
home_team_id: null,
|
|
967
968
|
away_team_id: null,
|
|
968
|
-
home_placeholder: "
|
|
969
|
-
away_placeholder: "
|
|
969
|
+
home_placeholder: "1I",
|
|
970
|
+
away_placeholder: "3C/D/F/G/H",
|
|
970
971
|
status: "scheduled",
|
|
971
972
|
},
|
|
972
973
|
{
|
|
@@ -974,12 +975,12 @@ export const matches = [
|
|
|
974
975
|
match_number: 78,
|
|
975
976
|
date: "2026-07-01",
|
|
976
977
|
time_utc: "01:00",
|
|
977
|
-
venue_id: "
|
|
978
|
+
venue_id: "att",
|
|
978
979
|
round: "Round of 32",
|
|
979
980
|
home_team_id: null,
|
|
980
981
|
away_team_id: null,
|
|
981
|
-
home_placeholder: "
|
|
982
|
-
away_placeholder: "
|
|
982
|
+
home_placeholder: "2E",
|
|
983
|
+
away_placeholder: "2I",
|
|
983
984
|
status: "scheduled",
|
|
984
985
|
},
|
|
985
986
|
{
|
|
@@ -987,12 +988,12 @@ export const matches = [
|
|
|
987
988
|
match_number: 79,
|
|
988
989
|
date: "2026-07-01",
|
|
989
990
|
time_utc: "17:00",
|
|
990
|
-
venue_id: "
|
|
991
|
+
venue_id: "azteca",
|
|
991
992
|
round: "Round of 32",
|
|
992
993
|
home_team_id: null,
|
|
993
994
|
away_team_id: null,
|
|
994
|
-
home_placeholder: "
|
|
995
|
-
away_placeholder: "
|
|
995
|
+
home_placeholder: "1A",
|
|
996
|
+
away_placeholder: "3C/E/F/H/I",
|
|
996
997
|
status: "scheduled",
|
|
997
998
|
},
|
|
998
999
|
{
|
|
@@ -1000,12 +1001,12 @@ export const matches = [
|
|
|
1000
1001
|
match_number: 80,
|
|
1001
1002
|
date: "2026-07-01",
|
|
1002
1003
|
time_utc: "19:00",
|
|
1003
|
-
venue_id: "
|
|
1004
|
+
venue_id: "mercedes_benz",
|
|
1004
1005
|
round: "Round of 32",
|
|
1005
1006
|
home_team_id: null,
|
|
1006
1007
|
away_team_id: null,
|
|
1007
|
-
home_placeholder: "
|
|
1008
|
-
away_placeholder: "
|
|
1008
|
+
home_placeholder: "1L",
|
|
1009
|
+
away_placeholder: "3E/H/I/J/K",
|
|
1009
1010
|
status: "scheduled",
|
|
1010
1011
|
},
|
|
1011
1012
|
{
|
|
@@ -1013,12 +1014,12 @@ export const matches = [
|
|
|
1013
1014
|
match_number: 81,
|
|
1014
1015
|
date: "2026-07-01",
|
|
1015
1016
|
time_utc: "22:00",
|
|
1016
|
-
venue_id: "
|
|
1017
|
+
venue_id: "levis",
|
|
1017
1018
|
round: "Round of 32",
|
|
1018
1019
|
home_team_id: null,
|
|
1019
1020
|
away_team_id: null,
|
|
1020
|
-
home_placeholder: "
|
|
1021
|
-
away_placeholder: "
|
|
1021
|
+
home_placeholder: "1D",
|
|
1022
|
+
away_placeholder: "3B/E/F/I/J",
|
|
1022
1023
|
status: "scheduled",
|
|
1023
1024
|
},
|
|
1024
1025
|
{
|
|
@@ -1031,7 +1032,7 @@ export const matches = [
|
|
|
1031
1032
|
home_team_id: null,
|
|
1032
1033
|
away_team_id: null,
|
|
1033
1034
|
home_placeholder: "1G",
|
|
1034
|
-
away_placeholder: "
|
|
1035
|
+
away_placeholder: "3A/E/H/I/J",
|
|
1035
1036
|
status: "scheduled",
|
|
1036
1037
|
},
|
|
1037
1038
|
{
|
|
@@ -1039,12 +1040,12 @@ export const matches = [
|
|
|
1039
1040
|
match_number: 83,
|
|
1040
1041
|
date: "2026-07-02",
|
|
1041
1042
|
time_utc: "17:00",
|
|
1042
|
-
venue_id: "
|
|
1043
|
+
venue_id: "bmo",
|
|
1043
1044
|
round: "Round of 32",
|
|
1044
1045
|
home_team_id: null,
|
|
1045
1046
|
away_team_id: null,
|
|
1046
|
-
home_placeholder: "
|
|
1047
|
-
away_placeholder: "
|
|
1047
|
+
home_placeholder: "2K",
|
|
1048
|
+
away_placeholder: "2L",
|
|
1048
1049
|
status: "scheduled",
|
|
1049
1050
|
},
|
|
1050
1051
|
{
|
|
@@ -1052,12 +1053,12 @@ export const matches = [
|
|
|
1052
1053
|
match_number: 84,
|
|
1053
1054
|
date: "2026-07-02",
|
|
1054
1055
|
time_utc: "19:00",
|
|
1055
|
-
venue_id: "
|
|
1056
|
+
venue_id: "sofi",
|
|
1056
1057
|
round: "Round of 32",
|
|
1057
1058
|
home_team_id: null,
|
|
1058
1059
|
away_team_id: null,
|
|
1059
1060
|
home_placeholder: "1H",
|
|
1060
|
-
away_placeholder: "
|
|
1061
|
+
away_placeholder: "2J",
|
|
1061
1062
|
status: "scheduled",
|
|
1062
1063
|
},
|
|
1063
1064
|
{
|
|
@@ -1065,12 +1066,12 @@ export const matches = [
|
|
|
1065
1066
|
match_number: 85,
|
|
1066
1067
|
date: "2026-07-02",
|
|
1067
1068
|
time_utc: "22:00",
|
|
1068
|
-
venue_id: "
|
|
1069
|
+
venue_id: "bc_place",
|
|
1069
1070
|
round: "Round of 32",
|
|
1070
1071
|
home_team_id: null,
|
|
1071
1072
|
away_team_id: null,
|
|
1072
|
-
home_placeholder: "
|
|
1073
|
-
away_placeholder: "
|
|
1073
|
+
home_placeholder: "1B",
|
|
1074
|
+
away_placeholder: "3E/F/G/I/J",
|
|
1074
1075
|
status: "scheduled",
|
|
1075
1076
|
},
|
|
1076
1077
|
{
|
|
@@ -1078,12 +1079,12 @@ export const matches = [
|
|
|
1078
1079
|
match_number: 86,
|
|
1079
1080
|
date: "2026-07-03",
|
|
1080
1081
|
time_utc: "01:00",
|
|
1081
|
-
venue_id: "
|
|
1082
|
+
venue_id: "hard_rock",
|
|
1082
1083
|
round: "Round of 32",
|
|
1083
1084
|
home_team_id: null,
|
|
1084
1085
|
away_team_id: null,
|
|
1085
|
-
home_placeholder: "
|
|
1086
|
-
away_placeholder: "
|
|
1086
|
+
home_placeholder: "1J",
|
|
1087
|
+
away_placeholder: "2H",
|
|
1087
1088
|
status: "scheduled",
|
|
1088
1089
|
},
|
|
1089
1090
|
{
|
|
@@ -1091,12 +1092,12 @@ export const matches = [
|
|
|
1091
1092
|
match_number: 87,
|
|
1092
1093
|
date: "2026-07-03",
|
|
1093
1094
|
time_utc: "19:00",
|
|
1094
|
-
venue_id: "
|
|
1095
|
+
venue_id: "arrowhead",
|
|
1095
1096
|
round: "Round of 32",
|
|
1096
1097
|
home_team_id: null,
|
|
1097
1098
|
away_team_id: null,
|
|
1098
|
-
home_placeholder: "
|
|
1099
|
-
away_placeholder: "
|
|
1099
|
+
home_placeholder: "1K",
|
|
1100
|
+
away_placeholder: "3D/E/I/J/L",
|
|
1100
1101
|
status: "scheduled",
|
|
1101
1102
|
},
|
|
1102
1103
|
{
|
|
@@ -1104,12 +1105,12 @@ export const matches = [
|
|
|
1104
1105
|
match_number: 88,
|
|
1105
1106
|
date: "2026-07-03",
|
|
1106
1107
|
time_utc: "22:00",
|
|
1107
|
-
venue_id: "
|
|
1108
|
+
venue_id: "att",
|
|
1108
1109
|
round: "Round of 32",
|
|
1109
1110
|
home_team_id: null,
|
|
1110
1111
|
away_team_id: null,
|
|
1111
|
-
home_placeholder: "
|
|
1112
|
-
away_placeholder: "
|
|
1112
|
+
home_placeholder: "2D",
|
|
1113
|
+
away_placeholder: "2G",
|
|
1113
1114
|
status: "scheduled",
|
|
1114
1115
|
},
|
|
1115
1116
|
// ════════════════════════════════════════════════════════════════
|
|
@@ -1336,4 +1337,3 @@ export const matches = [
|
|
|
1336
1337
|
status: "scheduled",
|
|
1337
1338
|
},
|
|
1338
1339
|
];
|
|
1339
|
-
//# sourceMappingURL=matches.js.map
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
export const news = [
|
|
2
|
+
{
|
|
3
|
+
"id": "2bc6a048f147",
|
|
4
|
+
"title": "England to play New Zealand and Costa Rica in final World Cup warm-ups",
|
|
5
|
+
"date": "2026-02-11",
|
|
6
|
+
"source": "BBC Sport",
|
|
7
|
+
"url": "https://www.bbc.com/sport/football/articles/crrx9werrexo?at_medium=RSS&at_campaign=rss",
|
|
8
|
+
"summary": "England to play New Zealand and Costa Rica in final World Cup warm-ups",
|
|
9
|
+
"categories": [
|
|
10
|
+
"general"
|
|
11
|
+
],
|
|
12
|
+
"related_teams": [],
|
|
13
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "cf5929f52526",
|
|
17
|
+
"title": "England to play New Zealand and Costa Rica in final pre-World Cup friendlies",
|
|
18
|
+
"date": "2026-02-11",
|
|
19
|
+
"source": "The Guardian",
|
|
20
|
+
"url": "https://www.theguardian.com/football/2026/feb/11/england-to-play-new-zealand-costa-rica-final-pre-world-cup-friendlies-florida-base-kansas-city",
|
|
21
|
+
"summary": "England to play New Zealand and Costa Rica in final pre-World Cup friendlies",
|
|
22
|
+
"categories": [
|
|
23
|
+
"general"
|
|
24
|
+
],
|
|
25
|
+
"related_teams": [],
|
|
26
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "4b0be4c25993",
|
|
30
|
+
"title": "Eni Aluko damages her legacy with her latest attack on Ian Wright | Suzanne Wrack",
|
|
31
|
+
"date": "2026-02-11",
|
|
32
|
+
"source": "The Guardian",
|
|
33
|
+
"url": "https://www.theguardian.com/football/2026/feb/11/eni-aluko-attack-ian-wright-pundits",
|
|
34
|
+
"summary": "Eni Aluko damages her legacy with her latest attack on Ian Wright | Suzanne Wrack",
|
|
35
|
+
"categories": [
|
|
36
|
+
"general"
|
|
37
|
+
],
|
|
38
|
+
"related_teams": [],
|
|
39
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "c6bd6d57de83",
|
|
43
|
+
"title": "Inter Miami announce Messi injury that shakes Argentina",
|
|
44
|
+
"date": "2026-02-11",
|
|
45
|
+
"source": "Marca",
|
|
46
|
+
"url": "https://www.marca.com/en/football/mls/2026/02/11/698cff5546163f59648b45ae.html",
|
|
47
|
+
"summary": "Inter Miami announce Messi injury that shakes Argentina",
|
|
48
|
+
"categories": [
|
|
49
|
+
"general"
|
|
50
|
+
],
|
|
51
|
+
"related_teams": [],
|
|
52
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"id": "0b5774ce1cb6",
|
|
56
|
+
"title": "Erling Haaland should not put pressure on himself to score, says Guardiola",
|
|
57
|
+
"date": "2026-02-10",
|
|
58
|
+
"source": "The Guardian",
|
|
59
|
+
"url": "https://www.theguardian.com/football/2026/feb/10/erling-haaland-should-not-pressure-himself-to-score-guardiola",
|
|
60
|
+
"summary": "Erling Haaland should not put pressure on himself to score, says Guardiola",
|
|
61
|
+
"categories": [
|
|
62
|
+
"general"
|
|
63
|
+
],
|
|
64
|
+
"related_teams": [],
|
|
65
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": "356401d0a0f1",
|
|
69
|
+
"title": "World Cup 2026: These are the most expensive stadiums that will host the best teams in the world",
|
|
70
|
+
"date": "2026-02-10",
|
|
71
|
+
"source": "Marca",
|
|
72
|
+
"url": "https://www.marca.com/en/football/2026/02/10/698b78dcca4741de028b45d9.html",
|
|
73
|
+
"summary": "World Cup 2026: These are the most expensive stadiums that will host the best teams in the world",
|
|
74
|
+
"categories": [
|
|
75
|
+
"general"
|
|
76
|
+
],
|
|
77
|
+
"related_teams": [],
|
|
78
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "4f0cb9282e2a",
|
|
82
|
+
"title": "United States to give priority visa appointments to fans with 2026 World Cup tickets",
|
|
83
|
+
"date": "2026-02-10",
|
|
84
|
+
"source": "Marca",
|
|
85
|
+
"url": "https://www.marca.com/en/world-cup/2026/02/10/698b056922601d23198b45b6.html",
|
|
86
|
+
"summary": "United States to give priority visa appointments to fans with 2026 World Cup tickets",
|
|
87
|
+
"categories": [
|
|
88
|
+
"general"
|
|
89
|
+
],
|
|
90
|
+
"related_teams": [],
|
|
91
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "3c91f1877c8c",
|
|
95
|
+
"title": "Real Madrid's Weir made Scotland captain full-time",
|
|
96
|
+
"date": "2026-02-10",
|
|
97
|
+
"source": "BBC Sport",
|
|
98
|
+
"url": "https://www.bbc.com/sport/football/articles/cqj9ry8r4p1o?at_medium=RSS&at_campaign=rss",
|
|
99
|
+
"summary": "Real Madrid's Weir made Scotland captain full-time",
|
|
100
|
+
"categories": [
|
|
101
|
+
"general"
|
|
102
|
+
],
|
|
103
|
+
"related_teams": [],
|
|
104
|
+
"fetched_at": "2026-02-12T00:25:01.301Z"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"id": "ca99a57b1970",
|
|
108
|
+
"title": "Neymar's future in Carlo Ancelotti's hands: would consider retirement if not called up for the World Cup",
|
|
109
|
+
"date": "2026-02-08",
|
|
110
|
+
"source": "Marca",
|
|
111
|
+
"url": "https://www.marca.com/en/world-cup/2026/02/08/6988d5a122601d8c648b45d0.html",
|
|
112
|
+
"summary": "Neymar's future in Carlo Ancelotti's hands: would consider retirement if not called up for the World Cup",
|
|
113
|
+
"categories": [
|
|
114
|
+
"general"
|
|
115
|
+
],
|
|
116
|
+
"related_teams": [],
|
|
117
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "4c99cf3bb3cf",
|
|
121
|
+
"title": "The race to be the USMNT’s top striker is – once again – an open competition",
|
|
122
|
+
"date": "2026-02-06",
|
|
123
|
+
"source": "The Guardian",
|
|
124
|
+
"url": "https://www.theguardian.com/football/2026/feb/06/usmnt-striker-mauricio-pochettino-world-cup",
|
|
125
|
+
"summary": "The race to be the USMNT’s top striker is – once again – an open competition",
|
|
126
|
+
"categories": [
|
|
127
|
+
"general"
|
|
128
|
+
],
|
|
129
|
+
"related_teams": [],
|
|
130
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "b3d6fa7bbaa4",
|
|
134
|
+
"title": "Mauricio Pochettino’s odd jab at Tim Weah misread the player and the moment | Leander Schaerlaeckens",
|
|
135
|
+
"date": "2026-02-04",
|
|
136
|
+
"source": "The Guardian",
|
|
137
|
+
"url": "https://www.theguardian.com/football/2026/feb/04/mauricio-pochettino-tim-weah-world-cup-ticket-prices",
|
|
138
|
+
"summary": "Mauricio Pochettino’s odd jab at Tim Weah misread the player and the moment | Leander Schaerlaeckens",
|
|
139
|
+
"categories": [
|
|
140
|
+
"general"
|
|
141
|
+
],
|
|
142
|
+
"related_teams": [],
|
|
143
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"id": "5e0a4b9769e5",
|
|
147
|
+
"title": "Transfer window verdict: how every Premier League club fared",
|
|
148
|
+
"date": "2026-02-03",
|
|
149
|
+
"source": "The Guardian",
|
|
150
|
+
"url": "https://www.theguardian.com/football/2026/feb/03/transfer-window-verdict-how-every-premier-league-club-fared",
|
|
151
|
+
"summary": "Transfer window verdict: how every Premier League club fared",
|
|
152
|
+
"categories": [
|
|
153
|
+
"general"
|
|
154
|
+
],
|
|
155
|
+
"related_teams": [],
|
|
156
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"id": "916a30aff7d3",
|
|
160
|
+
"title": "Real and England wait on Bellingham injury",
|
|
161
|
+
"date": "2026-02-01",
|
|
162
|
+
"source": "BBC Sport",
|
|
163
|
+
"url": "https://www.bbc.com/sport/football/articles/c9qprwlqdq0o?at_medium=RSS&at_campaign=rss",
|
|
164
|
+
"summary": "Real and England wait on Bellingham injury",
|
|
165
|
+
"categories": [
|
|
166
|
+
"general"
|
|
167
|
+
],
|
|
168
|
+
"related_teams": [],
|
|
169
|
+
"fetched_at": "2026-02-12T01:17:44.917Z"
|
|
170
|
+
}
|
|
171
|
+
];
|