-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock.ts
1143 lines (1129 loc) · 38.8 KB
/
mock.ts
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
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export const json = {
data: {},
content: [
{
data: {},
content: [
{
data: {},
marks: [],
value:
"THE WEB-BASED SOFTWARE known as the Animal Health Emergency Reporting Diagnostic System, or USAHERDS, serves as a helpful digital tool for state governments to track and trace animal diseases through populations of livestock. Now it's turned out to be a kind of infection vector of its own—in the hands of one of China's most prolific groups of hackers.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"On Tuesday, the cybersecurity incident-response firm Mandiant revealed a long-running hacking campaign that breached at least six US state governments over the past year. Mandiant says the campaign, which it believes to have been the work of the notorious ",
nodeType: "text",
},
{
data: {
uri: "https://www.wired.com/story/barium-winnti-china-hackers-video-game-loot-indictments/",
},
content: [
{
data: {},
marks: [],
value: "Chinese cyberespionage group APT41",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
"—also known as Barium, or as a part of the larger Chinese hacker group Winnti—used a vulnerability in USAHERDS to penetrate at least two of those targets. It may have hit many more, given that 18 states run USAHERDS on web servers, and any of those servers could have been commandeered by the hackers.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"APT41 has gained a reputation as one of China's most aggressive hacking groups. The US Department of Justice ",
nodeType: "text",
},
{
data: {
uri: "https://www.wired.com/story/barium-winnti-china-hackers-video-game-loot-indictments/",
},
content: [
{
data: {},
marks: [],
value: "indicted five of its members in absentia in 2020",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
" and accused them of hacking into hundreds of victims' systems across Asia and the West, both for state-sponsored espionage and for profit. The group’s goal in this latest series of intrusions, or what data they may have been seeking, remains a mystery. But Mandiant analyst Rufus Brown says that it nonetheless shows just how active APT41 remains, and how inventive and thorough it's been in searching for any toehold that might allow them into yet another set of targets—even an obscure livestock management tool most Americans have never heard of.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value: "“It's very unnerving to see this group ",
nodeType: "text",
},
{
data: {},
marks: [
{
type: "italic",
},
],
value: "everywhere",
nodeType: "text",
},
{
data: {},
marks: [],
value:
",” says Brown. “APT41 is going after any external-facing web application that can give them access to a network. Just very persistent, very continuous targeting.”",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value: "",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
content: [
{
data: {},
marks: [
{
type: "bold",
},
],
value:
"“There are 18 states that use USAHERDS. If you're APT41, why not exploit all of them?”",
nodeType: "text",
},
{
data: {},
marks: [],
value: "\n-RUFUS BROWN, MANDIANT",
nodeType: "text",
},
],
nodeType: "paragraph",
},
],
nodeType: "blockquote",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"Late last year, Mandiant warned the developer of USAHERDS, a Pennsylvania-based company called Acclaim Systems, of a ",
nodeType: "text",
},
{
data: {
uri: "https://nvd.nist.gov/vuln/detail/CVE-2021-44207",
},
content: [
{
data: {},
marks: [],
value: "high-severity hackable bug in the app",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
". The app encrypts and signs the data sent between PCs and the server running it using keys that are meant to be unique to every installation. Instead, the keys were hard-coded into the application, meaning they were the same for every server that ran USAHERDS. That meant that any hacker who learned the hard-coded key values—as Mandiant believes APT41 did during its reconnaissance of another, earlier victim's network—could manipulate data sent from a user's PC to the server to exploit another bug in its code, allowing the hacker to run their own code on the server at will. Mandiant says Acclaim Systems has since patched the USAHERDS vulnerability. (WIRED reached out to Acclaim Systems but didn't receive a response.)",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"USAHERDS is hardly the only web app APT41 appears to have hacked as a way into its victims' systems. Based on a series of incident-response cases over the past year, Mandiant believes that the Chinese group has since at least May 2021 been targeting US state governments by exploiting web applications that use a development framework called ASP.NET. At first, the group appears to have used a vulnerability in two such web apps, which Mandiant declined to name, to hack into two US state governments. Each of those apps was used solely by one of the two state agencies, Mandiant says.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"But the next month, and continuing through the end of 2021, Mandiant saw the hackers move on to target USAHERDS as another means of entry. APT41 hacked USAHERDS first as a way into one of the two state governments it had already targeted, and then to breach a third. Mandiant hasn't confirmed that the same vulnerability was used to hack any other victims. Starting in December, Mandiant found that APT41 moved on to exploiting the ",
nodeType: "text",
},
{
data: {
uri: "https://www.wired.com/story/log4j-flaw-hacking-internet/",
},
content: [
{
data: {},
marks: [],
value:
"widely publicized vulnerability in Log4j, the commonly used Apache logging framework",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
", using it to breach at least two other US state governments.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
'Mandiant nonetheless chose to reveal the exploitation of USAHERDS in the two earlier breaches due to the broad use of the app across state governments, the severity of the bug, and the likelihood that it was also used to quietly penetrate other state networks. "There are 18 states that use USAHERDS. If you\'re APT41, why not exploit all of them?" says Mandiant\'s Brown. "We don\'t know how broad this is. We just really want to get the information out there."',
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
'Once it had access to a server on a target network, APT41 would advance using relatively common "credential harvesting" tools, such as the ',
nodeType: "text",
},
{
data: {
uri: "https://www.wired.com/story/how-mimikatz-became-go-to-hacker-tool/",
},
content: [
{
data: {},
marks: [],
value: "Mimikatz",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
" technique of accessing passwords in a machine's memory and then using them to gain access to other computers on the network. It then planted backdoor code in victim computers that allowed it broad, ongoing access to the state governments' networks. The group used malware and infrastructure that Mandiant says it clearly recognized as that of APT41, including tools with names like KEYPLUG, DEADEYE, and DUSTPAN.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"The half-dozen US state governments that Mandiant has highlighted join a massive list of APT41's targets over the past several years, from the US, France, Australia, the United Kingdom, and Chile to a dozen Asian countries. The group, which the Department of Justice has ",
nodeType: "text",
},
{
data: {
uri: "https://www.wired.com/story/barium-winnti-china-hackers-video-game-loot-indictments/",
},
content: [
{
data: {},
marks: [],
value:
"linked to a Chengdu, China-based company called Chengdu 404 Network Technology",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
", has carried out an unusual mix of espionage-focused hacking—seemingly in the service of the Chinese government—and for-profit hacking, from stealing virtual video game currency to ransomware.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
],
nodeType: "document",
};
export const extract = {
data: {},
content: [
{
data: {},
content: [
{
data: {},
marks: [],
value:
"THE WEB-BASED SOFTWARE known as the Animal Health Emergency Reporting Diagnostic System, or USAHERDS, serves as a helpful digital tool for state governments to track and trace animal diseases through populations of livestock. Now it's turned out to be a kind of infection vector of its own—in the hands of one of China's most prolific groups of hackers.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"On Tuesday, the cybersecurity incident-response firm Mandiant revealed a long-running hacking campaign that breached at least six US state governments over the past year. Mandiant says the campaign, which it believes to have been the work of the notorious ",
nodeType: "text",
},
{
data: {
uri: "https://www.wired.com/story/barium-winnti-china-hackers-video-game-loot-indictments/",
},
content: [
{
data: {},
marks: [],
value: "Chinese cyberespionage group APT41",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
"—also known as Barium, or as a part of the larger Chinese hacker group Winnti—used a vulnerability in USAHERDS to penetrate at least two of those targets. It may have hit many more, given that 18 states run USAHERDS on web servers, and any of those servers could have been commandeered by the hackers.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
],
nodeType: "document",
};
export const posts = [
{
slug: "these-are-the-best-games-to-play-on-the-playstation-5",
title: "These are the best games to play on the PlayStation 5",
author: "washingtonpost",
topic: {
name: "gaming",
slug: "gaming",
},
thumbnail: {
title: "(iStock/Washington Post illustration)",
description: "These are the best games to play on the PlayStation 5\n",
url: "https://images.ctfassets.net/d24otek6mn76/4cYIXuRcrLp9a5hXk0GDzC/a5537fa8963e49c2c548a95cd47d7b92/imrs__1_.jpg",
},
sys: {
publishedAt: "2022-03-23T19:21:01.558Z",
},
},
{
slug: "4-post-pandemic-cybersecurity-trends",
title: "4 Post-Pandemic Cybersecurity Trends",
author: "netscout",
topic: {
name: "security",
slug: "security",
},
thumbnail: {
title:
"Digital Network Data and Communication Network Concept Abstract Background",
description: "The constant evolution of computer security",
url: "https://images.ctfassets.net/d24otek6mn76/5NiCvd6i3NNiEkkz6BneNz/0ce8979b55942bbc3cc910b6eb584973/ciberseguridad.jpeg",
},
sys: {
publishedAt: "2022-03-23T00:32:42.980Z",
},
},
{
slug: "three-types-of-technology-that-can-help-boost-your-sales",
title: "Three types of technology that can help boost your sales",
author: "retailtechinnovationhub",
topic: {
name: "business",
slug: "business",
},
thumbnail: {
title: "Three types of technology that can help boost your sales",
description: "Three types of technology that can help boost your sales",
url: "https://images.ctfassets.net/d24otek6mn76/4Xbj53xf4wkFLLfM0FPwK9/ef0854f1e2b6b69f8ee7c76a1222f714/7-Ways-to-Increase-Sales-Using-SEO-blog.gif",
},
sys: {
publishedAt: "2022-03-23T00:23:16.555Z",
},
},
{
slug: "artificial-insurance-how-machine-learning-is-transforming-underwriting",
title:
"Artificial Insurance? How Machine Learning Is Transforming Underwriting",
author: "businessnewsdaily",
topic: {
name: "technology",
slug: "technology",
},
thumbnail: {
title: "Machine learning",
description: "machine learning",
url: "https://images.ctfassets.net/d24otek6mn76/6fIc0sMH2eiRhICQwqwJaP/14cee344e1f77ae3cf7779c4cab2f5b5/machine-learning-covid-19.webp",
},
sys: {
publishedAt: "2022-03-23T00:21:11.725Z",
},
},
{
slug: "three-web-development-trends-driving-a-better-user-experience-this-year",
title:
"Three Web Development Trends Driving a Better User Experience This Year",
author: "technative",
topic: {
name: "development",
slug: "development",
},
thumbnail: {
title: "Let’s delve into the topic",
description: "Top Web Development Trends",
url: "https://images.ctfassets.net/d24otek6mn76/KDr85UgS3la1lRIRQFK3l/5f4d4f96eb73adba741fcf61c1efc796/Top-Web-Development-Trends-1.webp",
},
sys: {
publishedAt: "2022-03-23T00:19:16.335Z",
},
},
];
const post = {
data: {
blogsCollection: {
total: 1,
items: [
{
slug: "bitcoin-cash-machines-ordered-to-shut-down-in-uk",
title: "Bitcoin cash machines ordered to shut down in UK",
subtitle:
"All UK crypto-currency cash machines (ATMs) are operating illegally and must be shut down, the Financial Conduct Authority has announced.",
author: "bbc news",
sys: {
publishedAt: "2022-03-16T19:13:43.701Z",
},
topic: {
name: "economy",
slug: "economy",
},
tags: ["economy", "cryptocurrency", "bitcoin"],
featured: false,
thumbnail: {
title: "Bitcoin ",
description: "Bitcoin on a keyboard",
url: "https://images.ctfassets.net/d24otek6mn76/52u3UXxNdVJfQeZfbzOqHh/f69c0d183ba7c33d99552b4e8c4aeacb/_123642993_mediaitem123642989.jpg",
},
recommendationCollection: {
items: [
{
title:
"Chinese Spies Hacked a Livestock App to Breach US State Networks",
slug: "chinese-spies-hacked-a-livestock-app-to-breach-us-state-networks",
sys: {
publishedAt: "2022-03-16T19:14:13.872Z",
},
thumbnail: {
description: "Dairy cows at a dairy farm",
title: " Noah Ortega / FILMING FOR LIBERATION",
url: "https://images.ctfassets.net/d24otek6mn76/1KkSyRA56x99vR8FIjHjDS/9327a2efede74f097e929c55d5f47402/e00e8cd2-a1b6-4fd0-bfe0-3b4aef775160_16-9-aspect-ratio_default_0.jpg",
},
},
],
},
content: {
json: {
data: {},
content: [
{
data: {},
content: [
{
data: {},
marks: [],
value:
"Crypto-ATMs look like regular cash machines and let people buy crypto-currency, such as Bitcoin, using their bank cards.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"But no company offering crypto-currency services in the UK has a licence to operate a crypto-ATM.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"The FCA said all such machines must be shut down or it will take action.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"According to crypto-ATM directory Coin ATM Radar, there are 81 functional crypto-ATMS in the UK.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
'The FCA said: "We regularly warn consumers that crypto-assets are unregulated and high-risk which means people are very unlikely to have any protection if things go wrong.',
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
'"People should be prepared to lose all their money if they choose to invest in them."',
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value: "The FCA ",
nodeType: "text",
},
{
data: {
uri: "https://register.fca.org.uk/s/search?predefined=U",
},
content: [
{
data: {},
marks: [],
value:
"publishes a list of companies that appear to be involved in crypto-currency",
nodeType: "text",
},
],
nodeType: "hyperlink",
},
{
data: {},
marks: [],
value:
" but have not registered their business with the regulator for anti-money-laundering checks.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
{
data: {},
content: [
{
data: {},
marks: [],
value:
"It said that since the publication of its list, 110 of the crypto companies had ceased trading.",
nodeType: "text",
},
],
nodeType: "paragraph",
},
],
nodeType: "document",
},
},
},
],
},
},
};
const page = {
data: {
pageCollection: {
items: [
{
title: "About",
description: "who we are, our history.",
slug: "about",
content: {
json: {
nodeType: "document",
data: {},
content: [
{
nodeType: "paragraph",
content: [
{
nodeType: "text",
value:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\n\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\n\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\n\nThe standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.\n\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.",
marks: [],
data: {},
},
],
data: {},
},
],
},
},
},
],
},
},
};
const websiteWidgets = {
data: {
postsTopics: {
items: [
{
name: "business",
slug: "business",
linkedFrom: {
blogsCollection: {
total: 1,
},
},
},
{
name: "security",
slug: "security",
linkedFrom: {
blogsCollection: {
total: 1,
},
},
},
{
name: "development",
slug: "development",
linkedFrom: {
blogsCollection: {
total: 1,
},
},
},
{
name: "economy",
slug: "economy",
linkedFrom: {
blogsCollection: {
total: 1,
},
},
},
{
name: "technology",
slug: "technology",
linkedFrom: {
blogsCollection: {
total: 1,
},
},
},
],
},
latestPosts: {
items: [
{
slug: "three-types-of-technology-that-can-help-boost-your-sales",
title: "Three types of technology that can help boost your sales",
author: "retailtechinnovationhub",
thumbnail: {
title: "Three types of technology that can help boost your sales",
description:
"Three types of technology that can help boost your sales",
url: "https://images.ctfassets.net/d24otek6mn76/4Xbj53xf4wkFLLfM0FPwK9/ef0854f1e2b6b69f8ee7c76a1222f714/7-Ways-to-Increase-Sales-Using-SEO-blog.gif",
},
sys: {
publishedAt: "2022-03-18T16:30:23.653Z",
},
},
{
slug: "artificial-insurance-how-machine-learning-is-transforming-underwriting",
title:
"Artificial Insurance? How Machine Learning Is Transforming Underwriting",
author: "businessnewsdaily",
thumbnail: {
title: "Machine learning",
description: "machine learning",
url: "https://images.ctfassets.net/d24otek6mn76/6fIc0sMH2eiRhICQwqwJaP/14cee344e1f77ae3cf7779c4cab2f5b5/machine-learning-covid-19.webp",
},
sys: {
publishedAt: "2022-03-18T02:55:43.772Z",
},
},
{
slug: "bitcoin-cash-machines-ordered-to-shut-down-in-uk",
title: "Bitcoin cash machines ordered to shut down in UK",
author: "bbc news",
thumbnail: {
title: "Bitcoin ",
description: "Bitcoin on a keyboard",
url: "https://images.ctfassets.net/d24otek6mn76/52u3UXxNdVJfQeZfbzOqHh/f69c0d183ba7c33d99552b4e8c4aeacb/_123642993_mediaitem123642989.jpg",
},
sys: {
publishedAt: "2022-03-18T01:34:33.812Z",
},
},
{
slug: "three-web-development-trends-driving-a-better-user-experience-this-year",
title:
"Three Web Development Trends Driving a Better User Experience This Year",
author: "technative",
thumbnail: {
title: "Let’s delve into the topic",
description: "Top Web Development Trends",
url: "https://images.ctfassets.net/d24otek6mn76/KDr85UgS3la1lRIRQFK3l/5f4d4f96eb73adba741fcf61c1efc796/Top-Web-Development-Trends-1.webp",
},
sys: {
publishedAt: "2022-03-18T01:33:44.630Z",
},
},
{
slug: "4-post-pandemic-cybersecurity-trends",
title: "4 Post-Pandemic Cybersecurity Trends",
author: "netscout",
thumbnail: {
title:
"Digital Network Data and Communication Network Concept Abstract Background",
description: "The constant evolution of computer security",
url: "https://images.ctfassets.net/d24otek6mn76/5NiCvd6i3NNiEkkz6BneNz/0ce8979b55942bbc3cc910b6eb584973/ciberseguridad.jpeg",
},
sys: {
publishedAt: "2022-03-18T01:04:06.599Z",
},
},
],
},
websiteWidgets: {
tags: [
"development",
"machine learning",
"cybersecurity",
"bitcoin",
"trends",
],
featuredPost: {
slug: "three-web-development-trends-driving-a-better-user-experience-this-year",
title:
"Three Web Development Trends Driving a Better User Experience This Year",
thumbnail: {
title: "Let’s delve into the topic",
description: "Top Web Development Trends",
url: "https://images.ctfassets.net/d24otek6mn76/KDr85UgS3la1lRIRQFK3l/5f4d4f96eb73adba741fcf61c1efc796/Top-Web-Development-Trends-1.webp",
},
sys: {
publishedAt: "2022-03-18T01:33:44.630Z",
},
author: "technative",
},
popularPosts: {
items: [
{
slug: "4-post-pandemic-cybersecurity-trends",
title: "4 Post-Pandemic Cybersecurity Trends",
author: "netscout",
thumbnail: {
title:
"Digital Network Data and Communication Network Concept Abstract Background",
description: "The constant evolution of computer security",
url: "https://images.ctfassets.net/d24otek6mn76/5NiCvd6i3NNiEkkz6BneNz/0ce8979b55942bbc3cc910b6eb584973/ciberseguridad.jpeg",
},
sys: {
publishedAt: "2022-03-18T01:04:06.599Z",
},
},
{
slug: "three-web-development-trends-driving-a-better-user-experience-this-year",
title:
"Three Web Development Trends Driving a Better User Experience This Year",
author: "technative",
thumbnail: {
title: "Let’s delve into the topic",
description: "Top Web Development Trends",
url: "https://images.ctfassets.net/d24otek6mn76/KDr85UgS3la1lRIRQFK3l/5f4d4f96eb73adba741fcf61c1efc796/Top-Web-Development-Trends-1.webp",
},
sys: {
publishedAt: "2022-03-18T01:33:44.630Z",
},
},
{
slug: "artificial-insurance-how-machine-learning-is-transforming-underwriting",
title:
"Artificial Insurance? How Machine Learning Is Transforming Underwriting",
author: "businessnewsdaily",
thumbnail: {
title: "Machine learning",
description: "machine learning",
url: "https://images.ctfassets.net/d24otek6mn76/6fIc0sMH2eiRhICQwqwJaP/14cee344e1f77ae3cf7779c4cab2f5b5/machine-learning-covid-19.webp",
},
sys: {
publishedAt: "2022-03-18T02:55:43.772Z",
},
},
],
},
randomPosts: {
items: [
{
slug: "bitcoin-cash-machines-ordered-to-shut-down-in-uk",
title: "Bitcoin cash machines ordered to shut down in UK",
author: "bbc news",
thumbnail: {
title: "Bitcoin ",
description: "Bitcoin on a keyboard",
url: "https://images.ctfassets.net/d24otek6mn76/52u3UXxNdVJfQeZfbzOqHh/f69c0d183ba7c33d99552b4e8c4aeacb/_123642993_mediaitem123642989.jpg",
},
sys: {
publishedAt: "2022-03-18T01:34:33.812Z",
},
},
{
slug: "4-post-pandemic-cybersecurity-trends",
title: "4 Post-Pandemic Cybersecurity Trends",
author: "netscout",
thumbnail: {
title:
"Digital Network Data and Communication Network Concept Abstract Background",
description: "The constant evolution of computer security",
url: "https://images.ctfassets.net/d24otek6mn76/5NiCvd6i3NNiEkkz6BneNz/0ce8979b55942bbc3cc910b6eb584973/ciberseguridad.jpeg",
},
sys: {
publishedAt: "2022-03-18T01:04:06.599Z",
},
},
{
slug: "three-web-development-trends-driving-a-better-user-experience-this-year",
title:
"Three Web Development Trends Driving a Better User Experience This Year",
author: "technative",
thumbnail: {
title: "Let’s delve into the topic",
description: "Top Web Development Trends",
url: "https://images.ctfassets.net/d24otek6mn76/KDr85UgS3la1lRIRQFK3l/5f4d4f96eb73adba741fcf61c1efc796/Top-Web-Development-Trends-1.webp",
},
sys: {
publishedAt: "2022-03-18T01:33:44.630Z",
},
},
],
},
socials: {
items: [
{
name: "facebook",
url: "https://brisa-diaz.netlify.app",
},
{
name: "twitter",
url: "https://github.com/BrisaDiaz",
},
{
name: "linkedin",
url: "https://www.linkedin.com/in/brisa-d%C3%ADaz/",
},
{
name: "reddit",
url: "https://brisa-diaz.netlify.app",
},
{
name: "pinterest",
url: "https://github.com/BrisaDiaz",
},
{
name: "vk",
url: "https://www.linkedin.com/in/brisa-d%C3%ADaz/",
},
{
name: "instagram",
url: "https://brisa-diaz.netlify.app/",
},
{
name: "youtube",
url: "https://brisa-diaz.netlify.app/",
},
{
name: "whatsapp",
url: "https://www.linkedin.com/in/brisa-d%C3%ADaz/",
},
{
name: "skipe",
url: "https://brisa-diaz.netlify.app",
},
{
name: "facebook",
url: "https://brisa-diaz.netlify.app",
},
{
name: "twitter",
url: "https://github.com/BrisaDiaz",
},
{
name: "skipe",
url: "https://brisa-diaz.netlify.app",
},
{
name: "instagram",
url: "https://brisa-diaz.netlify.app/",
},
{
name: "youtube",
url: "https://brisa-diaz.netlify.app/",
},
{
name: "linkedin",
url: "https://www.linkedin.com/in/brisa-d%C3%ADaz/",
},
],
},
socialsInBanner: {
items: [],
},
},
},
};
// {
// websiteWidgets(id: "6qdBspgR9EfIvWfxc2Q8Fy") {
// tags
// featuredPost {
// slug
// title
// thumbnail {