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: "Rizvi aces another tricky chase as Delhi Capitals floor Mumbai Indians",
      published_at: "04 Apr 2026, 03:18 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Critchley five seals three-day win as Hampshire endure horror start",
      published_at: "05 Apr 2026, 08:26 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Damage from Storm Dave causes indefinite delay to Durham's season opener",
      published_at: "05 Apr 2026, 03:12 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "CSK's bowlers face stern RCB test as rivalry momentum shifts",
      published_at: "05 Apr 2026, 12:05 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "'Everyone is going at a rate of knots'; CSK still in the noughts",
      published_at: "04 Apr 2026, 04:24 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Vlaeminck set for return after long injury recovery",
      published_at: "03 Apr 2026, 12:40 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Rahane 'messed it up' for Varun by giving him powerplay over, says Pathan",
      published_at: "03 Apr 2026, 08:41 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Critchley, Allison steer Essex after early Abbott strikes",
      published_at: "03 Apr 2026, 05:19 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Green expects NZ to go into T20 World Cup with 'heaps of confidence'",
      published_at: "04 Apr 2026, 08:52 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "KKR looking for first points against in-form PBKS",
      published_at: "05 Apr 2026, 07:08 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Man rammed car into Delhi Assembly to draw police's attention to missing nephew's case",
      published_at: "07 Apr 2026, 08:34 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Mason Crane five-for lifts Glamorgan into ascendancy",
      published_at: "05 Apr 2026, 07:02 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Mini Cooper Crashes Into Bike In Goa, Woman Working At 5-Star Hotel Dies",
      published_at: "07 Apr 2026, 08:31 am",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Bears show claws as Mousley century makes Surrey toil",
      published_at: "04 Apr 2026, 05:01 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Foreign secretary Misri to visit US; discuss trade, defence ties",
      published_at: "07 Apr 2026, 08:10 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Microsoft AI Chief Wants to Deliver State-of-the-Art AI Models by 2027: Report",
      published_at: "03 Apr 2026, 12:09 pm",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Samsung Galaxy A57 5G: Smart Choice That Redefines Mid-Range Value",
      published_at: "03 Apr 2026, 04:57 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Android 17 Beta 3 Update to Bring Notification Rules With Granular Control for Apps, Contacts: Report",
      published_at: "03 Apr 2026, 07:46 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Delhi Man Calls 8-Year-Old Girl Home To Fix Speaker, Sexually Assaults Her",
      published_at: "07 Apr 2026, 08:24 am",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "IPL 2026 | Lalit Modi Slams BCCI On Rs 2,400 Crore IPL 'Loss': "This Is Not What We Sold" - NDTV Sports",
      published_at: "07 Apr 2026, 05:34 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Euphoria Is Streaming Online: Know Where to Watch Sara Arjun's Social Thriller",
      published_at: "06 Apr 2026, 11:18 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Video: Artemis II Crew's Emotional Moment Naming Crater On Far Side Of Moon",
      published_at: "07 Apr 2026, 06:51 am",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "No Gill for Titans as Royals choose to bat ",
      published_at: "04 Apr 2026, 02:55 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "'He's run away', says Sarma as Assam Police reaches Pawan Khera's residence in Delhi",
      published_at: "07 Apr 2026, 06:41 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Redmi K Pad 2, New Redmi Laptops Tipped to Launch Alongside Redmi K90 Ultra",
      published_at: "03 Apr 2026, 12:39 pm",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Refrain from using trains for next 12 hours: Israel's dire warning for Iranians - India Today",
      published_at: "07 Apr 2026, 05:50 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Dhaka-Delhi Reset: Bangladesh Foreign Minister's India Visit Signals New Chapter In Ties",
      published_at: "07 Apr 2026, 06:47 am",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Samsung Galaxy S26 FE Surfaces on Geekbench With Exynos 2500 Chip, Android 17",
      published_at: "03 Apr 2026, 10:35 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Oppo Pad Mini Tipped to Feature 144Hz OLED Screen, Snapdragon 8 Gen 5 Chipset: Expected Specifications",
      published_at: "06 Apr 2026, 03:28 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Most corrupt govt in Assam, Congress will return to power: Kharge",
      published_at: "07 Apr 2026, 08:21 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "‘Could not remember name, stuttered’: Flyer hit on head by metal panel of aerobridge at Hyderabad airport",
      published_at: "07 Apr 2026, 05:17 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Ghosts Of 1971 Crisis: Why France Moving Gold From US Is Spooking Markets",
      published_at: "07 Apr 2026, 06:50 am",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Fleming expects Brevis to be fit for CSK's next game against Delhi Capitals",
      published_at: "06 Apr 2026, 07:57 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Dhurandhar-inspired posters with ‘Lyari raj’ slogan target Akhilesh Yadav in UP ahead of 2027 polls",
      published_at: "07 Apr 2026, 08:18 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Traffic restored on J-K highway day-long closure due to landslides in Ramban",
      published_at: "07 Apr 2026, 04:46 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Stock Market LIVE Updates, Sensex Today: Sensex, Nifty Off Day's Low, Markets Remain Volatile - NDTV",
      published_at: "07 Apr 2026, 08:15 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Oppo K15 Pro Series India Launch Timeline Tipped; Could Arrive With the Same Features as the Chinese Variant",
      published_at: "03 Apr 2026, 10:01 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Delhi University's Ramjas, Miranda colleges receive bomb threat via email; campus evacuated",
      published_at: "06 Apr 2026, 06:44 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "BJP focussed on Assam’s prosperity, self-reliance, global recognition: Modi",
      published_at: "06 Apr 2026, 07:57 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Durham seamers take charge on rain-affected day",
      published_at: "04 Apr 2026, 06:12 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Andhra CM calls for statewide movement for conserving water",
      published_at: "07 Apr 2026, 02:20 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Donald Trump may ‘hold off’ Iran strike if deal comes together, says report amid deadline to Tehran | World News - Hindustan Times",
      published_at: "07 Apr 2026, 05:58 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Sathankulam custodial death: Madurai court gives death penalty to 9 cops, CBI says was given case for ‘fair’ probe",
      published_at: "06 Apr 2026, 11:58 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Oil prices rise as Trump’s Hormuz threat looms; WTI hits $113, Brent climbs to $110",
      published_at: "07 Apr 2026, 02:51 am",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Lancashire regain momentum after Conway leads Northants fightback",
      published_at: "05 Apr 2026, 05:57 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Death in a liquor tetra pack: Cyanide plot by woman to kill her brother results in 3 deaths",
      published_at: "06 Apr 2026, 04:05 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Govt to launch Rs 2.5-lakh-crore credit guarantee scheme to combat West Asian crisis stress in coming days - Moneycontrol.com",
      published_at: "06 Apr 2026, 11:44 pm",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "‘My mother inspired me, gave me strength’: Mohsin Khan on IPL comeback",
      published_at: "07 Apr 2026, 06:01 am",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Xiaomi 17 Max Launch Timeline, Price Range Tipped Along With Key Specifications, Features",
      published_at: "06 Apr 2026, 09:18 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "IT Workers From North Korea Have Been Infiltrating DeFi Platforms for Past 7 Years",
      published_at: "06 Apr 2026, 09:25 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "OnePlus Nord 6 India Launch Today: Check Expected Price, Specifications, Livestream Details - Mashable India",
      published_at: "07 Apr 2026, 05:44 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] Economic Times */
    const article = {
      headline: "Food inflation to continue if West Asia war goes on: UN ",
      published_at: "03 Apr 2026, 06:46 pm",
      source: "Economic Times",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Iran military says U.S. rescue operation used abandoned airport in southern Isfahan - thehindu.com",
      published_at: "06 Apr 2026, 02:02 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Hayden expects GT bowlers to 'keep consistently bowling their best ball'",
      published_at: "05 Apr 2026, 05:54 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Cummins heads back home for final scan on injured back",
      published_at: "04 Apr 2026, 09:11 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Realme Teases New Narzo Phone on Amazon, Launch Expected Soon",
      published_at: "03 Apr 2026, 10:31 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Naeem, Emon set up big win for Qalandars in rain-hit clash",
      published_at: "03 Apr 2026, 07:09 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Bishnoi: Worked on 'perfecting my lengths' after difficult 2025",
      published_at: "05 Apr 2026, 09:55 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Around 95% of voters removed after Bengal SIR in Nandigram are Muslims, shows data",
      published_at: "07 Apr 2026, 12:21 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Rew ton, Kohler-Cadmore 94* fortify Somerset after Ogborne burst",
      published_at: "05 Apr 2026, 07:54 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "iPhone Fold Said to Face Production Delay as Apple Encounters Engineering Challenges",
      published_at: "07 Apr 2026, 07:14 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "No More Black? iPhone 18 Pro New Leak Reveals Bold New Colour Options for 2026",
      published_at: "06 Apr 2026, 01:00 pm",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Oppo Find X9 Ultra Leaked Image Reveals Design; Tipped to Feature 7,050mAh Battery",
      published_at: "03 Apr 2026, 08:30 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Overton returns as win-less CSK bowl vs unchanged RCB",
      published_at: "05 Apr 2026, 03:04 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "Candidates Chess: Sindarov set for an encore; Muzychuk in charge",
      published_at: "07 Apr 2026, 05:47 am",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Vivo T5 Pro 5G India Launch Teased Along With Availability Details, Key Specifications",
      published_at: "03 Apr 2026, 08:28 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Supreme Court says legal studies textbook revision should be extended to all classes",
      published_at: "07 Apr 2026, 01:54 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Chennai weather: IMD issues rain alert for entire week, thunderstorms likely",
      published_at: "06 Apr 2026, 07:46 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "HistoriCity | The pre-colonial roots of Christianity in India",
      published_at: "07 Apr 2026, 06:36 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "RR vs MI Preview: Will Hardik Pandya play? MI skipper returns to training",
      published_at: "07 Apr 2026, 02:58 am",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Pak lines up $4.8bn in external repayments by June, including $3.5bn owed to UAE: Report",
      published_at: "06 Apr 2026, 03:02 pm",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "How to Cancel GST Registration Online: Here’s a Step-by-Step Guide",
      published_at: "07 Apr 2026, 01:30 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Karnataka 2nd PUC Result 2026 LIVE: Class 12th Result To Be Out Soon - NDTV",
      published_at: "07 Apr 2026, 06:37 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "King and Litchfield lead Australia's charge to 3-0",
      published_at: "03 Apr 2026, 12:56 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Tom Smith joins England Women as spin-bowling coach",
      published_at: "02 Apr 2026, 10:43 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Unchanged PBKS bowl, Prashant Veer debuts for CSK",
      published_at: "03 Apr 2026, 01:56 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Apple Rolls Out AirTag 2 Firmware Update With Enhanced Tracking Alerts",
      published_at: "03 Apr 2026, 07:23 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Ingram back to the grind as Glamorgan show fight",
      published_at: "05 Apr 2026, 10:05 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Indians travelling to visa-free Vietnamese island Phu Quoc warned over two things: Check advisory",
      published_at: "07 Apr 2026, 03:34 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Delhi water disruption today: Check affected areas as DJB begins maintenance work",
      published_at: "07 Apr 2026, 04:26 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Green 141*, Mair five-for headline New Zealand's series-clinching win ",
      published_at: "04 Apr 2026, 06:20 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Full list of Congress candidates for 2026 West Bengal assembly elections",
      published_at: "07 Apr 2026, 06:42 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "World Health Day | Urban India still hesitant about HPV vaccine; what’s driving the fear? - theweek.in",
      published_at: "07 Apr 2026, 07:31 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] NDTV */
    const article = {
      headline: "Iranian Musician Holds Sit-In Outside Tehran Power Plant After Trump Threat",
      published_at: "07 Apr 2026, 07:43 am",
      source: "NDTV",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Chhattisgarh HC gives Amit Jogi life imprisonment in 2003 NCP leader murder case",
      published_at: "07 Apr 2026, 01:42 am",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Govt extends quality control order deadline to October; aims to boost electrical appliance supply",
      published_at: "06 Apr 2026, 03:07 pm",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "Sathankulam custodial deaths: 9 cops who tortured and killed father-son duo sentenced to death by court",
      published_at: "06 Apr 2026, 05:44 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [BUSINESS] TOI Business */
    const article = {
      headline: "Amid funding pressure, banks tap wider pool for credit expansion",
      published_at: "06 Apr 2026, 04:07 pm",
      source: "TOI Business",
      category: "BUSINESS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Bitcoin Trades Near $69,000 as Mixed Signals Keep Market Range-Bound",
      published_at: "06 Apr 2026, 11:43 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Hindustan Times */
    const article = {
      headline: "2 LPG ships to arrive soon; 16 more Indian-flagged vessels wait across Hormuz",
      published_at: "06 Apr 2026, 03:48 pm",
      source: "Hindustan Times",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Carson, Price impress as Sussex close in on victory",
      published_at: "05 Apr 2026, 06:10 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [TECHNOLOGY] Gadgets360 */
    const article = {
      headline: "Band Melam OTT Release: Know Where to Watch the Telugu Romantic Musical Film",
      published_at: "06 Apr 2026, 11:19 am",
      source: "Gadgets360",
      category: "TECHNOLOGY",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Sameer Minhas 70 gives Islamabad United a rollicking win over Rawalpindiz",
      published_at: "04 Apr 2026, 07:01 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Adam Lyth's 97 keeps Yorkshire safe at Sophia Gardens ",
      published_at: "06 Apr 2026, 06:08 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] TOI Sports */
    const article = {
      headline: "IPL 2026: After KKR-PBKS washout, will rain hit RR vs MI in Guwahati too?",
      published_at: "07 Apr 2026, 07:54 am",
      source: "TOI Sports",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [GENERAL] Google News */
    const article = {
      headline: "Sri Lankan-born Tamil actress Subashini found dead in Chennai - Gulf News",
      published_at: "06 Apr 2026, 11:34 am",
      source: "Google News",
      category: "GENERAL",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Rassie van der Dussen retires from international cricket",
      published_at: "02 Apr 2026, 07:49 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Critchley hits the season running again as Essex leave Hampshire reeling",
      published_at: "04 Apr 2026, 07:58 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Sooryavanshi meets Bumrah as RR eye top of the table",
      published_at: "06 Apr 2026, 05:51 pm",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    /* [SPORTS] ESPN Cricinfo */
    const article = {
      headline: "Rizvi leads Orange Cap race at IPL 2026, Bishnoi top of Purple Cap table",
      published_at: "06 Apr 2026, 08:53 am",
      source: "ESPN Cricinfo",
      category: "SPORTS",
      read_full: "Click to expand ▼",
    };
    return { props: { news: allNews } };
  } catch (error) {
    console.error('Error:', error);
  }
}
/* 📰 Last updated: 7/4/2026, 8:44:32 am */
main
×0
0
Ln 934, Col 1
Spaces: 2
UTF-8
JavaScript
✓ Prettier