-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoday.json
More file actions
1702 lines (1702 loc) · 87.3 KB
/
today.json
File metadata and controls
1702 lines (1702 loc) · 87.3 KB
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
{
"1": [
{
"id": "2074c63e-a45b-4f3f-b8a8-b3898c5be6eb",
"type": "shop",
"title": "Darlyng & Co.",
"subtitle": "The mission of Darlyng & Co. is to give parents one less thing to worry about when it comes to caring for their baby. We always have parents in mind in the design process and are proud to present products that are functional, toxin-free, sourced from high-quality materials, and aesthetically pleasing.",
"imageUrl": "https://cdn.shopify.com/s/files/1/0721/4207/files/NewLogo_V4_c5632790-bd91-4f5a-aad3-1821448a5223_550x.jpg?v=1496773128",
"clickUrl": "https://www.darlyngandco.com/",
"products": [
{
"name": "Kids Hair Care Kits",
"imageUrl": "https://cdn.shopify.com/s/files/1/0721/4207/products/Darlyng_CoKIDSHAIRCAREKITS_1400x.png?v=1604802292",
"description": "Try our kid-friendly haircare kits curated for your Darlyng to grow and maintain healthy hair.",
"clickUrl": "https://www.darlyngandco.com/collections/new-arrival/products/kids-hair-care-kits-1?variant=34879062966406",
"shopName": "Darlyng & Co."
},
{
"name": "Muslin Newborn Swaddle Blanket",
"imageUrl": "https://cdn.shopify.com/s/files/1/0721/4207/products/feather_swaddle_blanket-removebg-preview_0ffa834f-de60-44f8-8ff2-4978d64e23ed_1400x.png?v=1584743544",
"description": "These soft cuddly blankets can be used in a variety of ways like a car seat cover, nursing, playtime, tummy time, stroller rides, receiving blanket and more.",
"clickUrl": "https://www.darlyngandco.com/collections/nursery/products/classic-muslin-newborn-swaddle-blanket?variant=31457542996102",
"shopName": "Darlyng & Co."
},
{
"name": "Teether Plush Sensory Toy- Glow in the dark",
"imageUrl": "https://cdn.shopify.com/s/files/1/0721/4207/products/yummy_buddy_teether_plush_toy-_sensory_plush_toy-autism_1400x.jpg?v=1526687421",
"description": "Yummy Buddy is designed to engage vision, auditory and fine motor skills from infant to toddler and beyond. Bright, contrasting patterns will fascinate baby as eyesight develops, and they can discover new sounds, colors, and textures before. There\u2019s a multi-purpose clip designed for strollers or diaper bags so it can travel with you. Exploring role play fun at home and on the go. Yummy Buddy has crinkly ears, both chewable \"glow\" silicone hands, teething bib, multiple colors, and chimes when shaken, too! The perfect sensory chew toy.",
"clickUrl": "https://www.darlyngandco.com/collections/playtime/products/yummy-buddy-teether-plush-toy?variant=32607679815",
"shopName": "Darlyng & Co."
}
],
"tags": [
"Hair & Headwear",
"Services",
"For Parents",
"Kids",
"Accessories",
"Parenthood",
"Fashion",
"Clothing",
"Childrens",
"Entertainment & Toys",
"Toys",
"Shop"
],
"priority": 10
},
{
"id": "81c18862-89f9-4194-9aaf-9f8508579457",
"type": "shop",
"title": "Red Bay Coffee",
"subtitle": "Red Bay Coffee is at the forefront of what we believe is the fourth wave of coffee\u2014a firm commitment to ensure coffee production is not only high quality and sustainable, but a vehicle for diversity, inclusion, social and economic restoration, entrepreneurship, and environmental sustainability. We are foodies, artists, activists, community folk, and innovators who love, love, love what we do.",
"imageUrl": "https://cdn.shopify.com/s/files/1/1465/6106/files/RB_Logofinal_220x@2x.jpg?v=1551950251",
"clickUrl": "https://www.redbaycoffee.com/collections/all",
"products": [
{
"name": "East Fourteenth",
"imageUrl": "https://cdn.shopify.com/s/files/1/1465/6106/products/east-fourteenth-334342_900x.jpg?v=1618419265",
"description": "Tanzanian Dark Roast - Blackberry, Dark Chocolate, Date East Fourteenth is an homage to a past heritage and a link to history in the making. It is the story of Oakland\u2019s wide-reaching cultures and creeds.",
"clickUrl": "https://www.redbaycoffee.com/collections/coffee/products/east-fourteenth",
"shopName": "Red Bay Coffee"
},
{
"name": "Coffee Mug - Africa's Gift (Black)",
"imageUrl": "https://cdn.shopify.com/s/files/1/1465/6106/products/coffee-mug-africas-gift-black-124370_1080x.jpg?v=1603952793",
"description": "\"Coffee Africa's Gift to the World\" Coffee Mug - beautiful, stylish, black-on-black design with Red Bay Coffee logo - 12 ounces",
"clickUrl": "https://www.redbaycoffee.com/collections/drinkware/products/africas-gift-coffee-mug",
"shopName": "Red Bay Coffee"
},
{
"name": "Unisex Sweatshirt - Black Coffee - Black",
"imageUrl": "https://cdn.shopify.com/s/files/1/1465/6106/products/unisex-sweatshirt-black-coffee-black-371728_1080x.jpg?v=1629143564",
"description": "Crewneck Sweatshirt - black with black foil print; back Red Bay Coffee logo; 80/20 Poly-Cotton Blend. Locally sourced and screen printed in Oakland, CA.",
"clickUrl": "https://www.redbaycoffee.com/collections/apparel/products/black-coffee-unisex-sweatshirt-black",
"shopName": "Red Bay Coffee"
}
],
"tags": [
"Goods",
"coffee",
"Dining",
"Food & Drink",
"Food & Beverage",
"Black-owned",
"Oakland",
"Shop"
],
"priority": 10
}
],
"2": [
{
"id": "162f0cd8-ec7a-4866-af02-e066ee60c81f",
"type": "learn",
"title": "Book: Tell Me Who You Are",
"subtitle": "A roadmap for cultivation racial literacy by Winona Guo and Priya Vulchi",
"imageUrl": "https://images1.penguinrandomhouse.com/cover/9780593330173",
"clickUrl": "https://www.penguinrandomhouse.com/books/602186/tell-me-who-you-are-by-winona-guo-and-priya-vulchi/",
"tags": [
"Racial Literacy",
"Book",
"Learn"
],
"priority": 10
},
{
"id": "77b389fb-3c75-4377-bd54-98b49e130b34",
"type": "shop",
"title": "The Afro Gypsy",
"subtitle": "I create jewelry and accessories that enhance the uniqueness of you; we like to call it Bohemian with an AFRO-tude! My work predominantly consist of leather and metalwork items. But, considering my love for the extraordinary, you may stumble upon many other new or vintage items that could steal your heart!",
"imageUrl": "https://cdn.shopify.com/s/files/1/0407/6680/0034/files/The_Afro_Gypsy_Logo_1_360x.png?v=1597719296",
"clickUrl": "https://theafrogypsy.com/collections",
"products": [
{
"name": "Unisex African Bead Bracelets paired with Lava or Wood Beads",
"imageUrl": "https://cdn.shopify.com/s/files/1/0407/6680/0034/products/PSX_20200924_112629_1080x.jpg?v=1600965061",
"description": "African Bead Bracelets paired with Lava or Wood Beads. Sultry and handsome, these bracelets are all hand made with stretch cord.",
"clickUrl": "https://theafrogypsy.com/collections/bracelets/products/unisex-african-bead-bracelets-paired-with-lava-or-wood-beads",
"shopName": "The Afro Gypsy"
},
{
"name": "Handmade Journal",
"imageUrl": "https://cdn.shopify.com/s/files/1/0407/6680/0034/products/il_fullxfull.1140936946_ba3b_1080x.jpg?v=1597977446",
"description": "Handmade journal covered in luxurious upcycled upholstery with a hand sewn leather trim. This 96-page journal is ready to hold your secrets and hear your dreams. 3.75\" w \u00d7 6.7\" h.",
"clickUrl": "https://theafrogypsy.com/collections/lifestyle/products/handmade-journal-covered-in-luxurious-upcycled-upholstery-with-a-hand-sewn-leather-trim",
"shopName": "The Afro Gypsy"
},
{
"name": "Large Amethyst Pendant Necklace",
"imageUrl": "https://cdn.shopify.com/s/files/1/0407/6680/0034/products/20200930_100935_1080x.jpg?v=1601480834",
"description": "Hand wired Large Amethyst pendant necklace with 14K Antiqued GP chain and findings.",
"clickUrl": "https://theafrogypsy.com/collections/necklace/products/large-amethyst-pendant-necklace-with-14k-antiqued-gp-chain-and-findings",
"shopName": "The Afro Gypsy"
}
],
"tags": [
"Home & Garden",
"Decor",
"Fashion",
"Jewelry",
"Home",
"Office",
"Pet",
"Stationary",
"Notebooks",
"Sports & Outdoors",
"Electronics",
"Desserts",
"Shop"
],
"priority": 10
}
],
"3": [
{
"id": "35597c7b-f80f-4e2a-b298-07947f05d658",
"type": "learn",
"title": "The Words of Martin Luther King Jr. Reverberate in a Tumultuous Time",
"subtitle": "Dr. King\u2019s speeches have particular resonance today amid a year of sickness and death, Black Lives Matter protests and the storming of the Capitol.",
"imageUrl": "https://static01.nyt.com/images/2021/01/18/us/18MLK-1963b/merlin_182452224_2416cec4-b94e-4125-bf36-e517c13bded2-superJumbo.jpg?quality=90&auto=webp",
"clickUrl": "https://www.nytimes.com/2021/01/18/us/martin-luther-king-words-protests.html",
"tags": [
"Read",
"Speeches",
"Articles",
"MLK",
"NYT",
"New York Times",
"Learn"
],
"priority": 10
},
{
"id": "8207b3c6-3a43-4fa4-af35-02445f9a8681",
"type": "learn",
"title": "Toni Morrison - Biography",
"subtitle": "Toni Morrison was a Nobel and Pulitzer Prize-winning American novelist. Among her best-known novels are \"The Bluest Eye,\" \"Song of Solomon,\" \"Beloved,\" and \"A Mercy.\"",
"imageUrl": "https://www.biography.com/.image/ar_1:1%2Cc_fill%2Ccs_srgb%2Cg_face%2Cq_auto:good%2Cw_300/MTE1ODA0OTcxNzMxNzQ4MzY1/toni-morrison-9415590-1-402.jpg",
"clickUrl": "https://www.biography.com/writer/toni-morrison",
"tags": [
"Black History Month",
"Bios",
"Read",
"Biography",
"Learn"
],
"priority": 10
}
],
"4": [
{
"id": "3637dc5d-b29d-4202-b37f-f3b3fc3a8208",
"type": "learn",
"title": "When the first all-black professional basketball team dominated...back in the \u201920s",
"subtitle": "\"They were literally pioneers and recognized that they were making a statement in front of the audiences.\"",
"imageUrl": "https://theundefeated.com/wp-content/uploads/2017/02/ny-rens-1933-crop-original-original.jpg?w=1400",
"clickUrl": "https://theundefeated.com/features/when-the-first-all-black-professional-basketball-team-dominated-back-in-the-20s/",
"tags": [
"Black History Month",
"Read",
"Articles",
"Sports",
"Learn"
],
"priority": 10
},
{
"id": "36c8fc98-0494-4906-aa8e-0df7dd2704e8",
"type": "learn",
"title": "How the Negro National League Was Formed | Field of Dreams...Deferred",
"subtitle": "The Negro National League debuted 100 years ago with world-class players and legions of fans. Hear how founder Rube Foster formed the league in Part 1 of \"Field of Dreams...Deferred,\" a four-part series from TBS.",
"imageUrl": "https://media.bleacherreport.com/f_auto,w_768,h_512,q_auto,c_fill/br-img-images/001/624/423/j_gibson_original_crop_north.jpg",
"clickUrl": "https://www.youtube.com/watch?v=BXo1zmpn_10",
"tags": [
"Black Lives Matter",
"Sports",
"Videos",
"Watch",
"Learn"
],
"priority": 10
}
],
"5": [
{
"id": "1443d5fc-61a8-434c-87ee-b75cc59d7fdc",
"type": "learn",
"title": "Sports Can Battle Racism Workshop",
"subtitle": "A workshop for coaches on how to ensure that sports is an inclusive environment for ALL athletes. ",
"imageUrl": "https://cdn1.sportngin.com/attachments/photo/6671/8422/pca_logo_web_large.png",
"clickUrl": "https://positivecoach.org/google-forms/new-sports-can-battle-racism-a-workshop-for-coaches/",
"moreInfo": "In this 90 minute workshop, coaches will have an interactive discussion on how to combat racial discrimination, champion moral courage and empower their programs to create positive change in their communities.",
"tags": [
"Sports",
"Articles",
"workshop",
"coach",
"athlete",
"learn",
"listen",
"engage",
"positive",
"learn"
],
"priority": 10
},
{
"id": "7833e454-56b1-4364-8d10-58813b1093cd",
"type": "learn",
"title": "Uncivil Podcast",
"subtitle": "Uncivil brings you stories that were left out of the official history of the Civil War, ransacks America's past, and takes on the history you grew up with. We bring you untold stories about resistance, covert operations, corruption, mutiny, counterfeiting, antebellum drones, and so much more.",
"imageUrl": "https://gimlet.spotifycdn.com/show_art/54cc581f-b6a2-4928-814a-ec2151a98f7f/medium.webp",
"clickUrl": "https://gimletmedia.com/shows/uncivil",
"tags": [
"Listen",
"Podcasts",
"learn"
],
"priority": 10
}
],
"6": [
{
"id": "e1f7c442-c86e-4b5e-99f8-822503b1e96d",
"type": "shop",
"title": "Shop Thoughtful",
"subtitle": "thoughtful is a nonprofit that seeks to promote black businesses and create a one-stop-shop for consumers who want to vote with their wallets. thoughtful does not take any commissions off of the businesses it promotes, it is purely a hub designed to uplift and support established Black-owned businesses online.",
"imageUrl": "https://pbs.twimg.com/profile_images/1274679581518127104/Qb6pNclT.jpg",
"clickUrl": "https://www.shopthoughtful.org/",
"products": [
{
"name": "Olivia Twist Headband",
"imageUrl": "https://cdn.shopify.com/s/files/1/1573/3569/products/A8DE3B75-7070-4AA6-AAC1-0D6B43C4148F_530x.jpg?v=1589553120",
"description": "This is timeless versatility. Two loops of our cotton fabric linked at center. An alluring piece for easy, low maintenance styles.",
"clickUrl": "https://beriqisu.com/collections/headbands/products/copy-of-raven-twist-headband",
"shopName": "Shop Thoughtful "
},
{
"name": "Black Trans Lives",
"imageUrl": "https://c.bonfireassets.com/thumb/design-image/ccbf4525-6612-43b6-affd-fb7952bd6039/87c80c0e-7b1a-420a-81a9-654f101f643e/?size=900",
"description": "#BlackTransLivesMatter",
"clickUrl": "https://www.bonfire.com/black-trans-lives/",
"shopName": "Shop Thoughtful"
},
{
"name": "Nano-Ionic Facial Steamer",
"imageUrl": "https://cdn.shopify.com/s/files/1/0110/1037/5739/products/realm-concept-market-nano-ionic-facial-steamer-30070360703134_1080x.jpg?v=1628007842",
"description": "Facial steam combined with ionic water particles is up to 10x more effective than other facial steamers in penetrating the skin.",
"clickUrl": "https://www.realmconceptmarket.com/products/nano-ionic-facial-steamer",
"shopName": "Shop Thoughtful"
}
],
"tags": [
"Goods",
"Services",
"thoughtful",
"Shop"
],
"priority": 10
},
{
"id": "7109cb8d-f26c-4d93-bb60-344ca902468e",
"type": "learn",
"title": "Here Are the 18 African-American Astronauts",
"subtitle": "It was 22 years after Alan Shepard\u2019s first space trip that the U.S. sent a person of color up.",
"imageUrl": "https://static01.nyt.com/images/2019/07/16/lens/16dwight-next-ast-03/16dwight-next-ast-03-superJumbo.jpg?quality=90&auto=webp",
"clickUrl": "https://www.nytimes.com/2019/07/16/us/african-american-astronauts.html",
"tags": [
"Black History Month",
"Articles",
"Read",
"Learn"
],
"priority": 10
}
],
"7": [
{
"id": "675cce32-8973-4437-9b3e-f8b8aefb0433",
"type": "shop",
"title": "Natural Cuties",
"subtitle": "Natural Cuties is a brand that promotes, encourages and highlights the beauty of African American hair in its natural state! #Iamanaturalcutie are you?",
"imageUrl": "https://cdn.shopify.com/s/files/1/2198/5517/files/9781537049724_p0_v2_s550x406_compact.jpg?v=1547331217",
"clickUrl": "https://www.iamanaturalcutie.com/merchandise/",
"products": [
{
"name": "I am a Natural Cutie Book",
"imageUrl": "https://www.iamanaturalcutie.com/wp-content/uploads/2016/04/book.png",
"description": "Phoenix is excited about rocking her big afro puffs on the first day of Kindergarten. After hearing the other girls make fun of her puffs she is ready to go home. She will soon learn just what it means to be a NATURAL Cutie!",
"clickUrl": "https://www.iamanaturalcutie.com/merchandise/i-am-a-natural-cutie-book/",
"shopName": "Natural Cuties"
},
{
"name": "Drawstring Bag",
"imageUrl": "https://www.iamanaturalcutie.com/wp-content/uploads/2018/01/mockup-a119d310.jpg",
"description": "Combine your love for vibrant prints and a sporty style with a cool drawstring bag. It\u2019s a must-have gym essential that can be worn as a backpack with drawstring closure at top, and narrow, contrasting shoulder straps.",
"clickUrl": "https://www.iamanaturalcutie.com/merchandise/drawstring-bag/",
"shopName": "Natural Cuties"
},
{
"name": "Mug",
"imageUrl": "https://www.iamanaturalcutie.com/wp-content/uploads/2018/01/mockup-dc9566a1.jpg",
"description": "Whether you\u2019re drinking your morning coffee, your evening tea, or something in between \u2013 this mug\u2019s for you! It\u2019s sturdy and glossy with a vivid print that\u2019ll withstand the microwave and dishwasher.",
"clickUrl": "https://www.iamanaturalcutie.com/merchandise/mug/",
"shopName": "Natural Cuties"
}
],
"tags": [
"Fashion",
"Clothes",
"Kids",
"Clothing",
"Tees",
"Women\u2019s",
"Accessories",
"Handbags",
"Entertainment & Toys",
"Recreation",
"Books",
"Shop"
],
"priority": 10
},
{
"id": "2e43e12c-a850-4762-93c4-0c9b84868cf4",
"type": "act",
"title": "Ban or Restrict Tear Gas",
"subtitle": "The use of tear gas has been banned and is illegal in war. This same tear gas is used by the law enforcement, to control unarmed crowds protesting for the BLM movement. Tear gas is also used for border control and is thrown at innocent migrants who are unarmed and pose no sudden threat to anyone in the vicinity. ",
"imageUrl": "https://assets.change.org/photos/7/qf/ns/CxQFnsFkeBSTXsL-800x450-noPad.jpg",
"clickUrl": "https://www.change.org/p/ban-or-restrict-tear-gas",
"tags": [
"Tear gas",
"Sign",
"protests",
"police brutality",
"Act"
],
"priority": 10
}
],
"8": [
{
"id": "eafdb7c3-338a-42e9-9017-c3dec5416cc5",
"type": "shop",
"title": "A.O. Hamer",
"subtitle": "Hey, I'm Aramis and I love color!\n\nMy acrylic paintings are inspired by divine femininity, music, higher consciousness, and the cosmos. Liberation is my life's work- to free myself from the chains that could hold me back mentally, physically, and spiritually. My paintbrush reminds me of the creative power I have within the canvas - and life. As I take this journey to freedom, I hope to inspire others along the way. ",
"imageUrl": "https://static1.squarespace.com/static/553d3766e4b0306f5b6e308a/t/5ac28b5c6d2a73ce4233428e/1616791790313/?format=1500w",
"clickUrl": "https://aohamer.com/",
"tags": [
"Home & Garden",
"Home",
"Interior",
"Art",
"Custom",
"Independent",
"Acrylic",
"Shop"
],
"priority": 10
},
{
"id": "cc68037e-60fa-4f43-a420-91d1b21c68a6",
"type": "learn",
"title": "The New Jim Crow",
"subtitle": "The New Jim Crow is a stunning account of the rebirth of a caste-like system in the United States, one that has resulted in millions of African Americans locked behind bars and then relegated to a permanent second-class status\u2014denied the very rights supposedly won in the Civil Rights Movement.",
"imageUrl": "https://newjimcrow.com/wp-content/uploads/2019/12/new_jim_crow_reissue_pb_final-1.jpg",
"clickUrl": "https://bookshop.org/books/the-new-jim-crow-mass-incarceration-in-the-age-of-colorblindness-anniversary/9781620971932",
"tags": [
"books",
"prison",
"criminal justice",
"slavery",
"read",
"learn"
],
"priority": 10
}
],
"9": [
{
"id": "b18107e2-84ea-4ba4-b249-18ac6a4d744e",
"type": "act",
"title": "Classify White Supremacist Groups as Domestic Terrorist Organizations",
"subtitle": "Request a new legal requirement to register, classify, and subsequently surveil white supremacist organizations as domestic terrorist organizations. By classifying these groups as intimidating to the American population and dangerous to human life, the institutions responsible for protecting citizens against such groups will have the necessary information and resources to prevent further destruction carried out by these violent terrorist groups.",
"imageUrl": "https://assets.change.org/photos/4/bb/uc/QqbbUCcfLkgAZfm-800x450-noPad.jpg",
"clickUrl": "https://www.change.org/p/clare-linkins-executive-director-of-national-counterterrorism-center-lift-the-hoods-classify-white-supremacist-groups-as-domestic-terrorist-organizations",
"tags": [
"Sign",
"KKK",
"White supremacy",
"Act"
],
"priority": 10
},
{
"id": "f098b6fa-9b10-4b1e-bf64-a8cf15f12b5e",
"type": "learn",
"title": "Microaggressions Are A Big Deal: How To Talk Them Out And When To Walk Away",
"subtitle": "Microaggressions are defined as the everyday, subtle, intentional \u2014 and oftentimes unintentional \u2014 interactions or behaviors that communicate some sort of bias toward historically marginalized groups. Learn more in this podcast from NPR.",
"imageUrl": "https://media.npr.org/assets/img/2020/06/08/4_lifekit_final-copy_wide-009c69a2031c119a4c433755d56e25214e359a32-s1400-c85.jpg",
"clickUrl": "https://www.npr.org/2020/06/08/872371063/microaggressions-are-a-big-deal-how-to-talk-them-out-and-when-to-walk-away",
"tags": [
"Read",
"Articles",
"Listen",
"Microaggressions",
"NPR",
"learn"
],
"priority": 10
}
],
"10": [
{
"id": "b711f2ca-845a-4a50-81ac-4e7f3434a262",
"type": "shop",
"title": "Naja Tea",
"subtitle": "At Naja Tea, we stand for quality, integrity, and curiosity. We strive daily to maintain high standards in every aspect of our business. Our mission is to provide a positive, significant, and sensational experience with Naja Tea.",
"imageUrl": "https://najatea.com/wp-content/uploads/2016/05/logo-03.png",
"clickUrl": "https://najatea.com/shop-teas/",
"products": [
{
"name": "English Breakfast Tea",
"imageUrl": "https://najatea.com/wp-content/uploads/2020/04/English-Breakfast.png",
"description": "This is a full-bodied, robust, rich and blended to go well with milk and sugar and will give you an energy boost while boosting your immune system.",
"clickUrl": "https://najatea.com/product/english-breakfast/",
"shopName": "Naja Tea"
},
{
"name": "Brew-In-Cup with Stainless Infuser & Lid",
"imageUrl": "https://najatea.com/wp-content/uploads/2020/11/832-CRB-1.jpg",
"description": "A simple design to enjoy loose leaf tea by the cup. Lucidity Brew-in-Cup is a wonderful addition to home and office.",
"clickUrl": "https://najatea.com/product/lucidity-brew-in-cup-with-stainless-infuser-and-lid/",
"shopName": "Naja Tea"
},
{
"name": "Biscotti Bites",
"imageUrl": "https://najatea.com/wp-content/uploads/2020/10/TheBiteCoBiscottiALL.jpg",
"description": "A traditional Biscotti recipe modernized using organic, wholesome ingredients and served in smaller, melt-in-your-mouth, bite-sized pieces.",
"clickUrl": "https://najatea.com/product/biscotti-bites/",
"shopName": "Naja Tea"
}
],
"tags": [
"Food & Beverage",
"Dining",
"Food & Drink",
"Health",
"Nutrition",
"Coffee & Tea",
"Shop"
],
"priority": 10
},
{
"id": "d4ff5d49-3371-4d64-a9fa-93f6cef6f751",
"type": "shop",
"title": "Beija Flor Naturals",
"subtitle": "Beija-Flor Naturals has nearly a decade as a Curly Girl favorite product line in addition to skincare that is effective, exotic and unique in the green beauty market.",
"imageUrl": "https://cdn.shopify.com/s/files/1/0051/4074/2178/products/MG_3025_2048x.jpg?v=1555990328",
"clickUrl": "https://www.beijaflornaturals.com/",
"products": [
{
"name": "Body and Hair Honey",
"imageUrl": "https://cdn.shopify.com/s/files/1/0051/4074/2178/products/Image-from-iOS-e1531872423734-600x759_1080x.jpg?v=1593301267",
"description": "Moisturizing Butter + Oils blend to give a nourishing sheen to skin and hair. Only a little goes a long way and the fragrance is divine.",
"clickUrl": "https://www.beijaflornaturals.com/collections/hair/products/body-and-hair-honey",
"shopName": "Beija Flor Naturals"
},
{
"name": "Acai Mango Lotion",
"imageUrl": "https://cdn.shopify.com/s/files/1/0051/4074/2178/products/Beija_Flor_Naturals-3474-Edit-Edit_2048x.jpg?v=1559100212",
"description": "The acai mango lotion is a rich and creamy facial moisturizer that is perfect for all skin types. This water-based product absorbs perfectly, and includes the all powerful acai and mango extracts, murumuru butter, rosemary and orange essential oils.",
"clickUrl": "https://www.beijaflornaturals.com/collections/face/products/acai-mango-lotion",
"shopName": "Beija Flor Naturals"
},
{
"name": "Kinks Curls & Coils Haircare Bundle",
"imageUrl": "https://cdn.shopify.com/s/files/1/0051/4074/2178/products/MG_3025_2048x.jpg?v=1616570997",
"description": "Bundle and Save! Treat your coils to a start to finish process of our amazing haircare line.",
"clickUrl": "https://www.beijaflornaturals.com/collections/all/products/kinks-curls-coils-haircare-bundle",
"shopName": "Beija Flor Naturals"
}
],
"tags": [
"Health & Beauty",
"Beauty",
"Hair",
"Skin",
"Bath & Body",
"Skincare",
"Hair & Headwear",
"Haircare",
"Shampoo",
"Hair growth/repair",
"Home & Garden",
"Candles",
"Shop"
],
"priority": 10
}
],
"11": [
{
"id": "f6983bb6-70ce-4822-9eb2-7514859b78c1",
"type": "shop",
"title": "glAze",
"subtitle": "glAze represents those that don't believe it takes much to create an amazing look. We are the stealthy, the un-gawdy, enjoy pale hues and monochromatic splendor yet can switch it up and get really BOLD!",
"imageUrl": "https://cdn.shopify.com/s/files/1/2350/2503/files/08-31-2020_jewelry_glaze_225x@2x.png?v=1598902896",
"clickUrl": "https://glazedup.com/",
"tags": [
"Fashion",
"Accessories",
"Jewelry",
"Watches",
"Sunglasses",
"Lifestyle",
"Shop"
],
"priority": 10
},
{
"id": "08962702-2149-41e3-ba09-653b636525ac",
"type": "act",
"title": "Support the King Center",
"subtitle": "The King Center remain committed to proactively educating and training individuals and leaders across all sectors in Nonviolence365 to influence equitable change in our national and global infrastructure.",
"imageUrl": "https://images.givelively.org/nonprofits/882d8fe8-ea50-4e96-8635-16186f32ef58/logos/martin-luther-king-jr-center-for-non-violent-social-change-inc_processed_6ada75f285179721b42d30ac3f2cf414a35d5c191d73aca835dd33a528bf6c06_logo.jpg",
"clickUrl": "https://thekingcenter.org/donate-now/",
"tags": [
"Donate",
"Martin Luther King, Jr.",
"Coretta Scott King",
"MLK",
"Act"
],
"priority": 10
}
],
"12": [
{
"id": "1182e348-c6a8-43dc-9555-2bfa0afd7ac5",
"type": "shop",
"title": "MoreFire! Hot Sauce",
"subtitle": "MoreFire! Hot Sauce is a concoction of spicy fiery goodness. For those who are serious about good quality food. We are 1st place nationwide award winning... so get on the winning Team. You need MoreFire! in your life!",
"imageUrl": "https://i1.wp.com/morefirehotsauce.com/wp-content/uploads/2018/12/MoreFireLOGO_ver3.1.2.2web.png?fit=229%2C72&ssl=1",
"clickUrl": "https://shop.igotthatfire.com/",
"products": [
{
"name": "MoreFire! Hot Sauce (Original)",
"imageUrl": "https://shop.igotthatfire.com/wp-content/uploads/sites/18/2019/04/MoreFireHotSauceBottle_2019_web.jpg",
"description": "5 oz bottle of the multi-award winning Goldson\u2019s MoreFire! Hot Sauce\u2026 Ay Yo! I GOT THAT FIRE!",
"clickUrl": "https://shop.igotthatfire.com/product/5oz-bottle-morefire-hot-sauce/",
"shopName": "MoreFire! Hot Sauce"
},
{
"name": "MoreFire! Pepper Sauce (Louisiana Style)",
"imageUrl": "https://shop.igotthatfire.com/wp-content/uploads/sites/18/2018/12/167-5oz-Bottle-%E2%80%93-MoreFire-Hot-Sauce.jpg",
"description": "5 oz bottle of the 1st place Award Winning MoreFire! Pepper Sauce\u2026 Ay Yo! I GOT THAT FIRE!",
"clickUrl": "https://shop.igotthatfire.com/product/morefire-pepper-sauce-5oz-bottle/",
"shopName": "MoreFire! Hot Sauce"
},
{
"name": "I Got That Fire! T-Shirt \u2013 Box block",
"imageUrl": "https://shop.igotthatfire.com/wp-content/uploads/sites/18/2018/11/158-Hot-Sauce-T-Shirt-White-Box-Design.jpg",
"description": "I Got That Fire! T-Shirt \u2013 Box block",
"clickUrl": "https://shop.igotthatfire.com/product/i-got-that-fire-t-shirt-box-block/",
"shopName": "MoreFire! Hot Sauce"
}
],
"tags": [
"Fashion",
"Dining",
"Food & Drink",
"Food & Beverage",
"Shop"
],
"priority": 10
},
{
"id": "9b4e17d4-84d7-4e57-8b60-98101277936d",
"type": "shop",
"title": "CarmaBella Skincare",
"subtitle": "CarmaBella Skincare is made for women who want the best skincare, without any artificial chemicals or unnecessary ingredients. When using our products, you don't have to choose between natural and luxurious.",
"imageUrl": "https://cdn.shopify.com/s/files/1/0015/2371/2067/files/Radiance_Collection_2100x.png?v=1600554345",
"clickUrl": "https://carmabellaskincare.com/collections/all",
"products": [
{
"name": "Brightening Turmeric Clay Mask",
"imageUrl": "https://cdn.shopify.com/s/files/1/0015/2371/2067/products/Mockup-TurmericMask_1200x.png?v=1600456050",
"description": "Want an instant glow? We have the perfect natural skincare product to help you achieve it. The Brightening Turmeric Clay Mask instantly brightens dull, tired skin and restores your skins healthy complexion over time.",
"clickUrl": "https://carmabellaskincare.com/products/turmeric-clay-mask",
"shopName": "CarmaBella Skincare"
},
{
"name": "HydroSurge Moisturizing Gel",
"imageUrl": "https://cdn.shopify.com/s/files/1/0015/2371/2067/products/HydroSurgeMoisturizer-1_1200x.png?v=1600459319",
"description": "The HydroSurge Moisturizing Gel replenishes water and helps to improve your skin's moisture barrier, resulting in smooth, hydrated skin. This addictively refreshing gel leaves skin plump, dewy, and glowing.",
"clickUrl": "https://carmabellaskincare.com/products/moisturesurge-moisturizing-ge",
"shopName": "CarmaBella Skincare"
},
{
"name": "The Essential Bath & Body Set",
"imageUrl": "https://cdn.shopify.com/s/files/1/0015/2371/2067/products/B_BKitcopy1_1200x.png?v=1600460592",
"description": "The Essential Bath & Body Set is a nourishing collection that will leave your skin feeling soft and moisturized all day. This set includes the Natural Sugar Based Body Wash, a bath puff, and the Nourishing Shea Body Lotion.",
"clickUrl": "https://carmabellaskincare.com/products/essential-bath-body-set?variant=31148334841920",
"shopName": "CarmaBella Skincare"
}
],
"tags": [
"Health & Beauty",
"Beauty",
"Health",
"Skin",
"Treatments",
"Bath & Body",
"Skincare",
"Wellness",
"Shop"
],
"priority": 10
}
],
"13": [
{
"id": "8f34f995-eb1d-4801-9996-f64304d627b5",
"type": "shop",
"title": "Eb + Flo Boutique",
"subtitle": "Eb and Flo started out as just a vision and manifested in 2020. Our CEO, Ebony Hunter, is a strong believer in living out your dreams while not only looking good but feeling good too. Our mission is to provide styles that flow with you from moment to moment, whether you\u2019re making a quick run to the grocery store or meeting the girls for brunch. With comfort and quality in mind, we make looking lavish easy. Look good, feel good.",
"imageUrl": "https://cdn.shopify.com/s/files/1/0431/5244/1498/files/A9C8E1EF-B6DF-40DA-8659-2F42DD081D8B_220x.png?v=1594698813",
"clickUrl": "https://shopebandflo.com/collections",
"products": [
{
"name": "Classic Boss Lady Track Suit",
"imageUrl": "https://cdn.shopify.com/s/files/1/0431/5244/1498/products/image_25d42275-481c-4585-a6af-7db20de1fba8_1800x1800.jpg?v=1597618007",
"description": "Chic track suit for the lady on the go. Throw it on for a quick trip to the grocery store, a nail appointment, or dress it up for a cute brunch look.",
"clickUrl": "https://shopebandflo.com/collections/all-products-1/products/boss-lady-track-suit-classic-orange",
"shopName": "Eb + Flo Boutique"
},
{
"name": "Tedy Soft Sherpa Jacket",
"imageUrl": "https://cdn.shopify.com/s/files/1/0431/5244/1498/products/CopyofShopifyProductImages4472x4472_23_1800x1800.png?v=1626919154",
"description": "The warmest and most comfortable jacket you'll ever own! The Teddy Sherpa Jacket feels like a warm hug or like you're wearing a blanket. Features a drawstring hem that allows you to snatch that waist hunny *snap*snap*",
"clickUrl": "https://shopebandflo.com/products/teddy-sherpa-jacket",
"shopName": "Eb + Flo Boutique"
},
{
"name": "\"Thou shall not try me\" T-Shirt",
"imageUrl": "https://cdn.shopify.com/s/files/1/0431/5244/1498/products/image_7010f5e4-0b52-4909-b9c5-a31e4281055f_1800x1800.jpg?v=1599771205",
"description": "Mood 24:7! Let the folks know the deal in this super soft tee.",
"clickUrl": "https://shopebandflo.com/collections/all-products-1/products/thou-shall-not-try-me-t-shirt-gray",
"shopName": "Eb + Flo Boutique"
}
],
"tags": [
"Fashion",
"Clothes",
"Clothing",
"Shop"
],
"priority": 10
},
{
"id": "b6d4684a-bb43-4add-aa86-a1ae10ffe3b5",
"type": "learn",
"title": "Microaggressions Matter",
"subtitle": "They may not always be ill-intentioned, but the slights illuminate deeper problems in America.",
"imageUrl": "https://psychologybenefits.files.wordpress.com/2014/03/gradpsychblog-microaggressions.jpg",
"clickUrl": "https://www.theatlantic.com/politics/archive/2015/09/microaggressions-matter/406090/",
"tags": [
"Read",
"Articles",
"Microaggressions",
"Atlantic",
"Simba",
"learn"
],
"priority": 10
}
],
"14": [
{
"id": "5c646015-b76e-4600-8cb4-020730208d5e",
"type": "shop",
"title": "Lizzie's All Natural Products",
"subtitle": "Here at Lizzie's All-natural Products, we create fresh, natural, toxin free products for your home and body. Our promise is to provide you with quality products that your skin will love and benefit from.",
"imageUrl": "https://cdn.shopify.com/s/files/1/2451/3215/files/logo_500x.png?v=1572884688",
"clickUrl": "https://productsbylizzie.com/collections/all",
"products": [
{
"name": "Eczema Butter & Oatmeal Soap Bundle",
"imageUrl": "https://cdn.shopify.com/s/files/1/2451/3215/products/IMG-7081_1.jpg?v=1599759088",
"description": "Save $$ when you bundle our Best Selling Original Unscented Eczema Butter and Oatmeal & Honey Soap. Both are great for eczema, nourishing, smooths skin, helps reduce inflammation/flare ups, lighten dark marks and soothes skin.",
"clickUrl": "https://productsbylizzie.com/products/eczema-soap-set",
"shopName": "Lizzie's All Natural Products"
},
{
"name": "Eczema Oil",
"imageUrl": "https://cdn.shopify.com/s/files/1/2451/3215/products/IMG_1355_1_720x.jpg?v=1575629504",
"description": "If you have tried our Eczema Butter, then you will LOVE this eczema oil. Our 8 ounce bottle of eczema oil is has all the amazing ingredients like our eczema butter does, just in the oil form. Allow the power of nature to nurture your eczema with our all-natural eczema butter.",
"clickUrl": "https://productsbylizzie.com/products/eczema-oil",
"shopName": "Lizzie's All Natural Products"
},
{
"name": "Essential Oil",
"imageUrl": "https://cdn.shopify.com/s/files/1/2451/3215/products/48020AC9.jpg?v=1585190545",
"description": "All of our essential oils are pure therapeutic grade and offer various health benefits.",
"clickUrl": "https://productsbylizzie.com/products/essential-oil",
"shopName": "Lizzie's All Natural Products"
}
],
"tags": [
"Health & Beauty",
"Home",
"Essentials",
"Beauty",
"Skin",
"Bath & Body",
"Skincare",
"Beardcare",
"Wellness",
"Home & Garden",
"Shop"
],
"priority": 10
},
{
"id": "4e5d02f1-1a97-4746-9fb9-f67cfa3de8fa",
"type": "shop",
"title": "57 Chocolate",
"subtitle": "57 is the pioneer bean to bar chocolate business in Ghana. \u201957 Chocolate is short for 1957, which is the year of Ghana\u2019s independence. This venture uses resources grown within the country to create delicious treats.",
"imageUrl": "https://static1.squarespace.com/static/56f1a6051d07c03a5818bc84/t/5f245d9669940e4b03d2b742/1605026258242/?format=1500w",
"clickUrl": "https://57chocolategh.com/pages/pricelist",
"products": [
{
"name": "Chocolate Chips",
"imageUrl": "https://cdn.shopify.com/s/files/1/0508/1307/5636/files/Ghana_orders_chocolate_chips.png?v=1617155307",
"description": "Get them in dark chocolate (71.5%) or milk chocolate (49%)",
"clickUrl": "https://57chocolategh.com/pages/pricelist",
"shopName": "57 Chocolate"
},
{
"name": "Adinkra Bars",
"imageUrl": "https://cdn.shopify.com/s/files/1/0508/1307/5636/files/Adinkra_Ghana_Orders.png?v=1628796854",
"description": "Our Adinkra bars are beautiful bite-sized bars engraved with visual symbols originally created by the Ashanti of Ghana. A minimum of 2 chocolates and a maximum of 6 fit in our adinkra boxes. They are perfect for a quick treat and come in dark, milk, white, mocha latte, bissap, and moringa.",
"clickUrl": "https://57chocolategh.com/pages/pricelist",
"shopName": "57 Chocolate"
},
{
"name": "Chocolate Gift Box",
"imageUrl": "https://images.squarespace-cdn.com/content/v1/56f1a6051d07c03a5818bc84/1571798936590-IY755OTY15WA3FDPS1Z7/ke17ZwdGBToddI8pDm48kBtpJ0h6oTA_T7DonTC8zFdZw-zPPgdn4jUwVcJE1ZvWQUxwkmyExglNqGp0IvTJZamWLI2zvYWH8K3-s_4yszcp2ryTI0HqTOaaUohrI8PIWkiAYz5ghgEgSGJuDQ4e1ZKXpRdhEMT7SgthRpD0vyIKMshLAGzx4R3EDFOm1kBS/67916040_2913449195546325_1001204121337856000_n.jpg?format=1000w",
"description": "Get a set of 6 or 12 bars to give as a gift to the chocolate-lover in your life.",
"clickUrl": "https://57chocolategh.com/pages/pricelist",
"shopName": "57 Chocolate"
}
],
"tags": [
"Food & Beverage",
"Dining",
"Food & Drink",
"Desserts",
"Wedding",
"Shop"
],
"priority": 10
}
],
"15": [
{
"id": "aa149e63-ea59-40f6-8d91-de1a09013551",
"type": "shop",
"title": "Jungalow",
"subtitle": "Black-owned home decor store selling furniture, bed and bath products, planters, and more.",
"imageUrl": "https://pbs.twimg.com/profile_images/991056542693670912/-EQ1TGki.jpg",
"clickUrl": "https://www.jungalow.com/",
"products": [
{
"name": "Tigress Tangerine Rug by Justina Blakeney\u00ae X Loloi",
"imageUrl": "https://cdn.shopify.com/s/files/1/1398/8653/products/1111Untitled-1_4242602f-e755-444f-9a5b-7532ed727169_800x800.jpg?v=1595702871",
"description": "Hooked of 100% wool pile, the Tigress Collection brings the wild to the home. Designed by Justina Blakeney by Loloi, the collection brings saturated colors and illustrative designs for a true conversation piece in any space.",
"clickUrl": "https://www.jungalow.com/collections/rugs/products/tigress-tangerine-rug-by-justina-blakeney-x-loloi",
"shopName": "Jungalow"
},
{
"name": "Mary Jane Hook Pillow by Justina Blakeney",
"imageUrl": "https://cdn.shopify.com/s/files/1/1398/8653/products/maryjane222_800x800.jpg?v=1604630866",
"description": "We love the bold contrasting colors of the teal leaf motif against the fresh peachy-orange. The square shape is easy to toss anywhere \u2013 a 'chill out chair', a cozy pillow pit on the floor... anywhere you imagine. Hint: This pillows makes for a rad gift for your mellow homies!",
"clickUrl": "https://www.jungalow.com/collections/pillows/products/mary-jane-hook-pillow-by-justina-blakeney",
"shopName": "Jungalow"
},
{
"name": "Peace Vase by Justina Blakeney\u00ae",
"imageUrl": "https://cdn.shopify.com/s/files/1/1398/8653/products/asbronze_800x800.jpg?v=1613529776",
"description": "Bold and colorful vessels with personality are kind of our thing here at Jungalow. These Peace Vases will add just the right amount of charm to your #shelfie. Fill with dried foraged flowers or fronds and display it as a sculptural focal point on your entryway table or mantle.",
"clickUrl": "https://www.jungalow.com/collections/textiles/products/peace-vase-by-justina-blakeney",
"shopName": "Jungalow"
}
],
"tags": [
"Goods",
"Home",
"Interior",
"Home decor",
"Home & Garden",
"Black-owned",
"Shop"
],
"priority": 10
},
{
"id": "c2971b03-df1a-43f6-aa26-cc5a8fc1e560",
"type": "learn",
"title": "Not all Black people are African American. Here's the difference.",
"subtitle": "Black Lives Matter protests have opened up conversations about the history of privilege, racism, and the lived experiences and identities of black people in America. Now, the distinction between \"Black\" and \"African American\" has become a prominent conversation on social media.",
"imageUrl": "https://pbs.twimg.com/media/EaO0hvbXsAgNTHz?format=jpg&name=360x360",
"clickUrl": "https://www.cbsnews.com/news/not-all-black-people-are-african-american-what-is-the-difference/",
"tags": [
"Read",
"Articles",
"CBS News",
"learn"
],
"priority": 10
}
],
"16": [
{
"id": "37154355-fcdc-4231-a30d-43d1a22facbd",
"type": "learn",
"title": "Robert Tanner Freeman - Bytes of History",
"subtitle": "Robert Tanner Freeman was born in Washington DC in 1846. He was the son of slaves who had bought their freedom in the 19th century. Historical records are unclear but they probably adopted the surname Freeman in response to their transition.",
"imageUrl": "https://www.smilephiladelphian.com/wp-content/uploads/2015/10/freeman.jpg",
"clickUrl": "https://www.smilephiladelphian.com/bytes-of-history/",
"tags": [
"Black History Month",
"Read",
"Bios",
"Biography",
"Learn"
],
"priority": 10
},
{
"id": "4da4d91c-a4ed-484d-b912-2b1015e79daa",
"type": "shop",
"title": "Knock Your Socks Off",
"subtitle": "Created from an appreciation for high-quality socks that make a lasting impression and backed by years of retail buying experience, Knock Your Socks Off (aka KYSO) was founded in 2016 in Toronto, Canada.",
"imageUrl": "https://cdn.shopify.com/s/files/1/1433/6100/files/KYSO_logo_7a59c074-89bc-473a-8399-15ba317d1334_260x@2x.png?v=1603643020",
"clickUrl": "https://shopkyso.com/collections/all",
"products": [
{
"name": "Above the Clouds Women's Ankle Socks",
"imageUrl": "https://cdn.shopify.com/s/files/1/1433/6100/products/Above_the_clouds_DSC_0697_1080x.png?v=1594033286",
"description": "Ultra soft fabric, made from a blend of 80% combed cotton. Fits just above the ankle. Fits Women's shoe size 6-11",
"clickUrl": "https://shopkyso.com/products/above-the-clouds-womens-ankle-socks",
"shopName": "Knock Your Socks Off"
},
{
"name": "Basketball Cotton Socks",
"imageUrl": "https://cdn.shopify.com/s/files/1/1433/6100/products/DSC_0672_1080x.jpg?v=1594207119",
"description": "Ultra soft fabric, made from a blend of 80% combed cotton. Fits mid-calf length. Fits US men shoe size 7-12",
"clickUrl": "https://shopkyso.com/products/basketball-cotton-socks",
"shopName": "Knock Your Socks Off"
},
{
"name": "Cherry Dress Socks",
"imageUrl": "https://cdn.shopify.com/s/files/1/1433/6100/products/IMG_7971_1080x.jpg?v=1569209844",
"description": "Sweet, sweet cherries! Made from a blend of combed cotton, spandex and elastin. Fits men's shoe size 9-12 and women's shoe size 7-10",
"clickUrl": "https://shopkyso.com/products/cherry-dress-socks",
"shopName": "Knock Your Socks Off"
}
],
"tags": [
"Shoes",
"Socks",
"Fashion",
"Clothes",
"Shop"
],
"priority": 10
}
],
"17": [
{
"id": "84a66403-3968-4deb-8496-5616d4331e73",
"type": "learn",
"title": "How easy (or hard) is it to confuse a gun for a Taser?",
"subtitle": "Oscar Grant. Eric Harris. Daunte Wright. April 11, 2020 added another name to the list of Black men killed by police officers who intended to deploy a Taser but instead fired a handgun.",
"imageUrl": "https://cdn.cnn.com/cnnnext/dam/assets/210412040539-daunte-wright-medium-plus-169.jpg",
"clickUrl": "https://www.cnn.com/2021/04/12/us/confuse-gun-for-taser/index.html",
"tags": [
"daunte wright",
"police brutality",
"articles",
"handgun",
"taser",
"Learn"
],
"priority": 10
},
{
"id": "f2ed9318-7acc-4e58-a944-5ef46a16afd9",
"type": "shop",
"title": "Double Dutch Dolls",
"subtitle": "Through Fashion and Fun encourage young girls to explore and appreciate each other\u2019s differences and similarities. Beauty comes in all shades and the brand seeks to create a community that celebrates the multicultural beauty of every child. ",
"imageUrl": "https://i.ytimg.com/vi/mMu-VPRHayQ/mqdefault.jpg",
"clickUrl": "http://doubledutchdolls.com/shop/",
"products": [
{
"name": "18\" African American Fashion Doll- Zaria Bradley",
"imageUrl": "https://cdn1.bigcommerce.com/server5200/twzd0/products/1127/images/1032/Zaria_main_product_shot__17128.1403268570.1280.1280.jpg?c=2",
"description": "Hi! My name is Zaria Bradley. I am Kaila\u2019s levelheaded, laidback twin-sister. My personal style is \"classic cool\". I\u2019m into Soccer, Science, and keeping Kaila out of trouble, which is a huge job. I am in the 8th grade at Stylesboro Middle school. I am Captain of the Stingrays soccer team, President of the Science Club. I\u2019ve got my future all planned out with a soccer scholarship, HBCU undergrad and med school.",
"clickUrl": "http://doubledutchdolls.com/product/18-african-american-fashion-doll-zaria-bradley/",
"shopName": "Double Dutch Dolls"
},
{
"name": "18\" African American Fashion Doll- Kaila Bradley",
"imageUrl": "https://cdn1.bigcommerce.com/server5200/twzd0/products/1134/images/1056/dddKaila__12465.1417019213.1280.1280.jpg?c=2",
"description": "Hi! My name is Kaila Bradley and I love fashion. I am the creative mind behind the Double Dutch Dolls hip style. A budding fashionista, I design all of our clothes and have plans to launch my own fashion line, named none other than \"Double Dutch Dolls\" in honor of me and my also fabulous sister, Zaria. I am in the 8th grade at Stylesboro Middle school and Co-captain of the Stingrays Cheerleading team.",
"clickUrl": "http://doubledutchdolls.com/product/18african-american-fashion-doll-kaila-bradley/",
"shopName": "Double Dutch Dolls"
},
{
"name": "Double Dutch Dolls Book 1- \"Double Dare\"",
"imageUrl": "https://cdn2.bigcommerce.com/server5200/twzd0/products/1127/images/1031/book2__56032.1403268404.1280.1280.png?c=2",
"description": "Navigating middle school can be tricky. But, 14-year old twins Kaila and Zaria Bradley, known to everyone as the Double Dutch Dolls, seem to have it all figured out.",
"clickUrl": "http://doubledutchdolls.com/product/double-dutch-dolls-book-1-double-dare/",
"shopName": "Double Dutch Dolls"
}
],
"tags": [
"Children",
"Kids",
"Toys",
"Fashion",
"Clothes",
"Clothing",
"Tees",
"Women\u2019s",
"Accessories",
"Jewelry",
"Recreation",
"Books",
"Entertainment & Toys",
"Dolls",
"Shop"
],
"priority": 10
}
],
"18": [
{
"id": "c804f46b-6df6-4e35-a89e-f76fd7a655f2",
"type": "learn",
"title": "Just Mercy: A Story of Justice and Redemption",
"subtitle": "An unforgettable true story about the potential for mercy to redeem us, and a clarion call to end mass incarceration in America \u2014 from one of the most inspiring lawyers of our time.",
"imageUrl": "https://justmercy.eji.org/wp-content/uploads/2019/08/book.png",
"clickUrl": "https://justmercy.eji.org/",
"tags": [
"books",