index.js — cantgetcaught-code
×
JSindex.js×
JSfetch.js×
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
import Head from 'next/head'
import { useState } from 'react'
import fetchNews from '../lib/fetch-news'
export async function getServerSideProps() {
  try {
    // ✅ Real-time data - fetches on every request
    let globalCounter = 1;
    const getNextId = () => globalCounter++;
    // Fetch all news categories in parallel
    const generalNews = await fetchNews('general');
    const businessNews = await fetchNews('business');
    const techNews = await fetchNews('technology');
    const sportsNews = await fetchNews('sports');
    const allNews = [
      ...generalNews.news, ...businessNews.news, ...techNews.news, ...sportsNews.news
    ];
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Rahane: 'When the team is struggling, it is important to show your character'",
      published_at: "25 May 2026, 05:29 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "With Siddaramaiah and DKS by side, KC Venugopal denies Karnataka CM change buzz",
      published_at: "26 May 2026, 03:21 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "IndiGo Bengaluru-Chennai flight evacuated after smoke detected during taxiing, airline responds",
      published_at: "26 May 2026, 03:01 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Apple’s AI health coach could be delayed, leaving fitness fans in the lurch as rival companies surge ahead - TechRadar",
      published_at: "26 May 2026, 05:28 pm",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Ritu Jaiswal, ex-RJD Bihar women's wing chief, joins BJP: All about the leader",
      published_at: "26 May 2026, 10:00 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Clashes erupt in Mumbai's Mira Road over alleged goat sacrifice ahead of Eid al-Adha, FIR filed",
      published_at: "26 May 2026, 12:07 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Karnataka CM, DCM in Delhi: Congress top brass only discussed Rajya Sabha polls, rest is speculation, insists K.C. Venugopal - The Hindu",
      published_at: "26 May 2026, 01:07 pm",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "India needs to raise R&D spending to 2 pc of GDP by 2035 to boost manufacturing: Report ",
      published_at: "20 May 2026, 11:21 am",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Oil giant BP chairman removed over 'governance concerns', interim chief named",
      published_at: "26 May 2026, 12:05 pm",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Siddaramaiah to stay CM? Big remark by Karnataka Congress leader amid power tussle",
      published_at: "26 May 2026, 08:17 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Engineer Rashid gets interim bail for father’s post-death rituals",
      published_at: "26 May 2026, 09:17 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "US jury finds Boeing not guilty in 737 MAX grounding lawsuit ",
      published_at: "23 May 2026, 02:21 am",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "India, Canada eye 'game changer' deal; aim to triple bilateral trade to $50 billion by 2030",
      published_at: "26 May 2026, 04:49 am",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Petrol pain: How fuel price hike complicates RBI’s inflation fight",
      published_at: "26 May 2026, 03:26 pm",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Superconducting diamond reveals a hidden three-phase order - Tech Explorist",
      published_at: "26 May 2026, 12:16 pm",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Fish-rice meals at ₹5, curbs on liquor shops: Bengal CM Suvendu Adhikari announces new initiatives",
      published_at: "26 May 2026, 10:09 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Vivo X500 Pro Camera Specifications Leak; Tipped to Feature MediaTek Dimensity 9600 SoC",
      published_at: "26 May 2026, 09:44 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "‘100 is just a number...let rupee depreciate or reserves will bleed out’: 16th Finance Commission chief Arvind Panagariya’s advice to RBI ",
      published_at: "22 May 2026, 02:03 am",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Indian-origin woman shot dead inside US supermarket; attack caught on cam",
      published_at: "26 May 2026, 09:34 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "Why CEA Anantha Nageswaran says India is facing a ‘Live Balance of Payments Stress Test’ ",
      published_at: "20 May 2026, 09:19 am",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "In another dowry-linked death, newlywed jumps from fourth floor of Delhi house, family alleges harassment",
      published_at: "26 May 2026, 11:41 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "NIA files charge sheet against 9 for grenade attack on Haryana police station",
      published_at: "26 May 2026, 12:14 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Explained: Why Taiwan has overtaken India to become world’s fifth largest stock market",
      published_at: "26 May 2026, 04:48 am",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Enzo Maresca 'signs three-year deal' to replace Pep Guardiola as Man City set to make official announcement - Goal.com",
      published_at: "26 May 2026, 09:34 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Character limit on X faces Parliament panel scrutiny, chairman Nishikant Dubey from BJP cites Right to Equality",
      published_at: "26 May 2026, 09:56 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Trump’s big move hits Indians: Over 7 lakh green card seekers face uncertainty; top challenges explained",
      published_at: "26 May 2026, 09:30 am",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "CSA apologises for 'confusion' around New Year's Test tickets availability ",
      published_at: "21 May 2026, 03:24 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "China coal mine blast toll jumps to 82, nine missing ",
      published_at: "23 May 2026, 03:05 am",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Redmi Note 15 5G, Redmi 15 5G Reportedly Receive Price Hikes in India",
      published_at: "25 May 2026, 10:26 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Xiaomi 17T, Xiaomi 17 Pro Price, Storage Configurations Leak Ahead of Global Launch",
      published_at: "25 May 2026, 04:01 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Monsoon yet to arrive in Kerala; heatwave to continue over central, NW India: IMD",
      published_at: "26 May 2026, 09:52 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "Suryakumar Yadav likely to play against Uganda in Mumbai",
      published_at: "26 May 2026, 12:10 pm",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Bhishmar (2026) Now Streaming Online: What You Need to Know About This Malayalam Action Drama",
      published_at: "24 May 2026, 08:30 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Medvedev reveals what he 'should' have done after latest Roland Garros defeat - ATP Tour",
      published_at: "26 May 2026, 03:51 pm",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "RCB vs GT, Qualifier 1: How Powerplay battle could decide IPL 2026 finalist",
      published_at: "26 May 2026, 07:31 am",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "RR qualify for IPL 2026 playoffs; PBKS and KKR knocked out",
      published_at: "24 May 2026, 03:11 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Graham Clark hits Durham's fastest fifty to down Leicestershire ",
      published_at: "24 May 2026, 05:12 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "We'll Have Fewer Doctors, Scientists: US Tech Founders On New Green Card Rule",
      published_at: "26 May 2026, 04:43 pm",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Lanning goes freelance after opting out of Victoria contract",
      published_at: "26 May 2026, 12:41 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Solid RCB, surging GT clash for direct final ticket",
      published_at: "25 May 2026, 12:39 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "Trump to deploy 5,000 troops to Poland post Karol Nawrocki's election as President ",
      published_at: "22 May 2026, 12:56 am",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "007 First Light developer releases opening footage post leaks; 13-minute intro shows stealth-heavy mission - Indulgexpress",
      published_at: "25 May 2026, 05:01 pm",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Bairstow puts down a marker as Yorkshire march past Outlaws",
      published_at: "26 May 2026, 09:07 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "'In a great mind space'- Shreyas Iyer, and the freedom of expression",
      published_at: "24 May 2026, 04:59 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "Fredun Pharmaceuticals board approves 2:1 bonus issue ",
      published_at: "26 May 2026, 12:14 pm",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Oppo A6c Launched in India With 7,000mAh Battery, 13-Megapixel Rear Camera: Price, Specifications",
      published_at: "26 May 2026, 04:26 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Kuldeep and Rahul help DC sign off with big win",
      published_at: "24 May 2026, 07:54 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "iOS 27 Said to Offer Third-Party AirPlay Alternatives Such as Google Cast to EU Users",
      published_at: "25 May 2026, 12:48 pm",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "IYC fuels its ‘Indian Youth Cockroaches’ campaign as unemployment in focus after viral social media movement",
      published_at: "26 May 2026, 01:57 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Hide Your Number on WhatsApp: How to Set a Username for Better Privacy",
      published_at: "23 May 2026, 06:30 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Rare Blueberry Species Rediscovered In Arunachal Forest After 188 Years",
      published_at: "26 May 2026, 01:08 pm",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Ireland host rare home Test as New Zealand seek red-ball rhythm ",
      published_at: "26 May 2026, 05:36 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "AIADMK’s Esakki Subaya resigns to join TVK; fourth exit in two days",
      published_at: "26 May 2026, 10:00 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "US stock markets today (May 26, 2026): Wall Street rises as Iran deal hopes lift sentiment, tech stocks lead gains",
      published_at: "26 May 2026, 02:10 pm",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Take-Two Confirms GTA 6 Launch Date Again, Says Marketing Campaign Will Begin This Summer",
      published_at: "22 May 2026, 07:10 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Patrolling, flag marches, social media monitoring: Delhi Police on high alert ahead of Eid ul-Azha",
      published_at: "26 May 2026, 03:36 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "After two T20 World Cup final defeats, Wolvaardt says South Africa 'even hungrier' for title",
      published_at: "26 May 2026, 11:32 am",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Realme 16T 5G Review: The Pro Looks at an Affordable Price",
      published_at: "22 May 2026, 07:51 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Iran, US make progress on Tehran's demand to unfreeze assets; Doha talks signal breakthrough: Report - Moneycontrol.com",
      published_at: "26 May 2026, 09:50 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Apple's AI-Powered Health Coach Said to Face Delay, Might Arrive After watchOS 27 Release",
      published_at: "25 May 2026, 05:15 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Vijay Shankar set for LPL stint with Kandy Royals",
      published_at: "26 May 2026, 01:33 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "White House Shooting: Who was Nasire Best? Maryland man who allegedly believed he was ‘Jesus Christ’ killed after gunfire near Donald Trump’s home ",
      published_at: "24 May 2026, 02:39 am",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Google Introduces Gemini 3.5 Flash Low to Help Antigravity Users Maximise Usage",
      published_at: "26 May 2026, 08:39 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Setback for BJD as MP quits party, resigns from RS",
      published_at: "26 May 2026, 12:08 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "6 die due to asphyxiation inside under-construction septic tank: Odisha Police",
      published_at: "26 May 2026, 07:20 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Siddaramaiah's Rajya Sabha move likely, but Shivakumar may still not be CM: What next in Karnataka?",
      published_at: "26 May 2026, 05:11 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "As Heatwave Grips India Again, Data Shows Who Is Most At Risk",
      published_at: "26 May 2026, 04:31 pm",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "PM Modi completes 12 years in office; BJP, Union ministers hail his leadership",
      published_at: "26 May 2026, 03:59 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Parliament panel to review CBSE marking, NEET and language policy",
      published_at: "26 May 2026, 09:12 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Devine intervention brings New Zealand back from the dead",
      published_at: "24 May 2026, 03:17 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "AAP to contest 2028 MP assembly polls on its own strength",
      published_at: "26 May 2026, 04:47 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Moto G37 Power vs Oppo K14x vs Samsung Galaxy M17 5G: Price in India, Specifications Compared",
      published_at: "23 May 2026, 04:30 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Won't go and forcibly vacate: Centre tells Delhi high court over Delhi Gymkhana Club eviction",
      published_at: "26 May 2026, 05:30 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Nifty, Sensex Fall From Day's High To Slip In The Red — Three Reasons Why Market Is Falling Today - NDTV Profit",
      published_at: "26 May 2026, 08:53 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Why Trump's Push For Muslim Nations To Join Abraham Accords Is Unrealistic",
      published_at: "26 May 2026, 03:38 pm",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "Salt misses out for RCB; Shubman makes big change as GT opt to field",
      published_at: "26 May 2026, 01:49 pm",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "OKX Introduces Exchange OS to Support User-Created Crypto Trading Markets",
      published_at: "26 May 2026, 10:32 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "MacBook Pro OLED Panels to Enter Mass Production Next Month as Anticipated Launch Draws Close: Report",
      published_at: "22 May 2026, 09:00 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Ethereum Co-Founder Vitalik Buterin Responds to Criticism of Ethereum Foundation",
      published_at: "25 May 2026, 12:43 pm",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "'I was not supposed to play today' - Riyan Parag not completely fit but will play Eliminator",
      published_at: "24 May 2026, 03:28 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Meta Launches Forum App as a Reddit-Like Platform for Discussions With AI-Powered Assistant for Admins",
      published_at: "22 May 2026, 01:47 pm",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Lawyer seeks to register Cockroach Janta Party separately from US-based founder",
      published_at: "26 May 2026, 08:27 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Assam UCC Bill keeps tribals out of ambit; proposes live-in registration, polygamy ban",
      published_at: "26 May 2026, 12:50 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "MI bowl and rest Bumrah; Parag, Burger back for RR",
      published_at: "24 May 2026, 10:17 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: ""Absolute Chaos": Israeli Police Recounts Deadly Iran Missile Strike",
      published_at: "26 May 2026, 02:33 pm",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Understrength Surrey maintain 100% win record ",
      published_at: "24 May 2026, 01:55 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Macleod, Griffith storm to victory for Essex",
      published_at: "22 May 2026, 06:13 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Chunky Panday DEFENDS Ananya for brutal trolling on her ‘Bharatanatyam’ moves: 'Understand the context be - The Times of India",
      published_at: "26 May 2026, 08:18 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "3 teachers behind leaking NEET questions to be named in CBI chargesheet",
      published_at: "26 May 2026, 02:11 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Dattani and spinners take Hampshire to first Blast win",
      published_at: "26 May 2026, 05:45 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Shreyas Iyer's maiden IPL ton keeps Punjab Kings in the hunt for playoffs spot",
      published_at: "24 May 2026, 04:21 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Course-corrected RR thrown a first-blink challenge against SRH - Cricbuzz",
      published_at: "26 May 2026, 04:05 pm",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Gold price prediction today: Where are gold prices headed in the coming days? Check May 26, 2026 outlook",
      published_at: "26 May 2026, 05:38 am",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Xiaomi Smart Band 11 Active Reportedly Sighted on IMDA, NCC Certification Sites Ahead of Launch",
      published_at: "25 May 2026, 03:30 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Simpson the best as Sussex power past Essex",
      published_at: "22 May 2026, 08:42 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Kuldeep: 'Was expecting more, but I couldn't deliver this season'",
      published_at: "24 May 2026, 07:10 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "'Revenge, spite' driving Schutt in World Cup swansong",
      published_at: "25 May 2026, 04:31 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "SRH bat, Bethell out as Patidar returns for RCB",
      published_at: "22 May 2026, 02:07 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "England hopeful James Rew stars in comfortable Somerset win ",
      published_at: "26 May 2026, 10:09 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Smoke Scare On IndiGo Aircraft, Then An Emergency Evacuation",
      published_at: "26 May 2026, 03:45 pm",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    return { props: { news: allNews } };
  } catch (error) {
    console.error('Error:', error);
  }
}
/* 📰 Last updated: 26/5/2026, 6:06:34 pm */
main
×0
0
Ln 934, Col 1
Spaces: 2
UTF-8
JavaScript
✓ Prettier