forked from anburocky3/developer-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.json
1066 lines (1066 loc) · 33.6 KB
/
resources.json
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
[
{
"id": 1,
"category": "Web App",
"title": "Designresouces.io",
"description": "Download resources for Figma, Adobe XD etc",
"link": "https://designresources.io",
"license": "Freemium"
},
{
"id": 2,
"category": "Illustrations",
"title": "Streamline Illustrations",
"description": "Need great illustrations, but cannot find an illustrator? We've created all these vector illustrations for you.",
"link": "https://www.streamlinehq.com/illustrations",
"license": "Freemium"
},
{
"id": 3,
"category": "Icons",
"title": "tablericons.com",
"description": "1424 Fully customizable free SVG icons. (MIT license)",
"link": "https://tablericons.com/",
"license": "Free"
},
{
"id": 4,
"category": "Icons",
"title": "devicon.dev",
"description": "Devicon is a set of icons representing programming languages, designing, and development tools. You can use it as a font or directly copy/paste the SVG code into your project.",
"link": "https://devicon.dev",
"license": "Free"
},
{
"id": 5,
"category": "Icons",
"title": "devfont.com",
"description": "Devfont is a beautiful set of 915+ premium open source neutral-style icons elaborately crafted for designers and developers. All of the icons are free for both personal and commercial use. Made by @alexperronnet.",
"link": "https://devfont.com/",
"license": "Free"
},
{
"id": 6,
"category": "Icons",
"title": "svgporn.com",
"description": "SVG logos for developers, designers, bloggers, geeks and more",
"link": "https://svgporn.com/",
"license": "Free"
},
{
"id": 7,
"category": "Icons",
"title": "icones.js.org",
"description": "Collections of Icons from various fonts library.",
"link": "https://icones.js.org/",
"license": "Free"
},
{
"id": 8,
"category": "Icons",
"title": "iconmonstr.com",
"description": "Discover 4512+ free icons in 316 collections",
"link": "https://iconmonstr.com/",
"license": "Free"
},
{
"id": 9,
"category": "Web App",
"title": "UpLabs Web",
"description": "306,427 Templates Ready for Commercial Use / Web Templates",
"link": "https://www.uplabs.com/templates/web",
"license": "Freemium"
},
{
"id": 10,
"category": "Illustrations",
"title": "UpLabs Illustrations",
"description": "48,452 Illustrations Ready for Commercial Use",
"link": "https://www.uplabs.com/illustrations",
"license": "Freemium"
},
{
"id": 11,
"category": "Icons",
"title": "UpLabs Icons",
"description": "25,338 Icons Ready for Commercial Use",
"link": "https://www.uplabs.com/icons",
"license": "Freemium"
},
{
"id": 12,
"category": "Stock Photos",
"title": "pexels.com",
"description": "Pexels offers free stock photos and footage that you can download and use for free. With our large and diverse library, you will find the perfect photo or video for your website or blog post.",
"link": "www.pexels.com",
"license": "Freemium"
},
{
"id": 13,
"category": "Stock Photos",
"title": "unsplash.com",
"description": "Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos.",
"link": "https://unsplash.com/",
"license": "Free"
},
{
"id": 14,
"category": "Stock Photos",
"title": "pixabay.com",
"description": "Find your perfect free image or video to download and use for anything. ✓ Free for commercial use ✓ No attribution required ✓ High quality images.",
"link": "https://pixabay.com/",
"license": "Free"
},
{
"id": 15,
"category": "Stock Photos",
"title": "stocksnap.io",
"description": "The best source for free, CC0, do-what-you-want-with stock photos. Browse and download thousands of copyright-free stock images. No attribution required.",
"link": "https://stocksnap.io/",
"license": "Free"
},
{
"id": 16,
"category": "Mobile App",
"title": "Uplabs Android",
"description": "306,438 Templates Ready for Commercial Use / Android Templates",
"link": "https://www.uplabs.com/templates/android",
"license": "Freemium"
},
{
"id": 17,
"category": "Mobile App",
"title": "Uplabs iOS",
"description": "306,440 Templates Ready for Commercial Use / Android Templates",
"link": "https://www.uplabs.com/templates/ios",
"license": "Freemium"
},
{
"id": 18,
"category": "Illustrations",
"title": "unDraw",
"description": "A constantly updated design project with beautiful SVG images that you can use completely free and without attribution.",
"link": "https://undraw.co/illustrations",
"license": "Free"
},
{
"id": 19,
"category": "Icons",
"title": "BrandEPS",
"description": "BrandEPS is a database of brand logos and icons. logos and icons can download in vector EPS, SVG, JPG and PNG file formats",
"link": "https://brandeps.com/",
"license": "Free"
},
{
"id": 20,
"category": "Stock Photos",
"title": "Freepik",
"description": "Freepik is a search engine that helps users find high-quality photos, vector images, illustrations and PSD files for their creative projects.",
"link": "https://freepik.com/",
"license": "Freemium"
},
{
"id": 21,
"category": "Illustrations",
"title": "Threedee",
"description": "🌎 Biggest 3D illustrations library in the world 🏗️ 100,000,000+ combinations of 3D characters",
"link": "https://threedee.design/",
"license": "Premium"
},
{
"id": 22,
"category": "Icons",
"title": "Lordicon",
"description": "Lordicon is a powerful library of carefully crafted animated icons, ready to use in digital products, presentations, or videos!",
"link": "https://lordicon.com/",
"license": "Freemium"
},
{
"id": 23,
"category": "Stock Photos",
"title": "Allthefreestock",
"description": "Get all the Free Stock Images 📷, Videos 📹, Music 🎼 and Icons in one location.",
"link": "https://allthefreestock.com/",
"license": "Freemium"
},
{
"id": 24,
"category": "Illustrations",
"title": "Illustrations figma",
"description": "More than 5000 vector illustrations you can use inside Figma. All the figma illustrations are in SVG & PNG formats and includes styles like flat, lined, abstract and more.",
"link": "https://www.artify.co/illustrations-figma",
"license": "Freemium"
},
{
"id": 25,
"category": "Illustrations",
"title": "Vector Illustrations",
"description": "Search over 5000 vector illustrations and more than 70 design styles, with an integrated editor to adjust the design at you wish.",
"link": "https://www.artify.co/vector-illustrations",
"license": "Freemium"
},
{
"id": 26,
"category": "Icons",
"title": "3dicons",
"description": "A collection of over 5000 3D icons and characters with 4k resolution, each icon delivered in 5 color palettes, front and perspective views.",
"link": "https://www.3dicons.com/",
"license": "Freemium"
},
{
"id": 27,
"category": "Icons",
"title": "Iconshock",
"description": "The biggest icon pack with over 2 million professional icons in +400 icon sets with more than 30 design styles: material, flat, 3d, realistic, iOS, and more.",
"link": "https://www.iconshock.com/",
"license": "Freemium"
},
{
"id": 28,
"category": "Tools",
"title": "Optimizeimages",
"description": "Optimize images online with this free tool, compress & convert images in PNG, JPEG, SVG, AVIF, WebP and GIF formats, and even get picture HTML tags for correct implementation.",
"link": "https://www.optimizeimages.com",
"license": "Freemium"
},
{
"id": 29,
"category": "Tools",
"title": "TshirtDesigns",
"description": "An apparel and tshirt design mockup generator plus a marketplace of t-shirt designs.",
"link": "https://www.tshirtdesigns.com/mockups",
"license": "Freemium"
},
{
"id": 30,
"category": "Illustrations",
"title": "Story set",
"description": "Awesome free customizable illustrations for your next project Customize, animate and download our illustrations to make incredible landing pages, app or presentations!",
"link": "https://storyset.com/s",
"license": "Free"
},
{
"id": 31,
"category": "Illustrations",
"title": "Drawkit",
"description": "Beautiful, free illustrations. Updated weekly. Hand-drawn vector illustration and icon resources, perfect for your next project.",
"link": "https://drawkit.com/",
"license": "Freemium"
},
{
"id": 32,
"category": "Icons",
"title": "Iconfinder",
"description": "confinder is the world's largest marketplace for icons, illustrations and 3D illustrations in SVG, AI, and PNG format.",
"link": "https://www.iconfinder.com/",
"license": "Freemium"
},
{
"id": 33,
"category": "Illustrations",
"title": "Freepik Illustrations",
"description": "Get high quality freepik resources.",
"link": "https://www.freepik.com/vectors/illustrations",
"license": "Freemium"
},
{
"id": 34,
"category": "Icons",
"title": "Akar Icons",
"description": "Perfectly rounded icon library made for designers and developers.",
"link": "https://akaricons.com/",
"license": "Free"
},
{
"id": 35,
"category": "Tools",
"title": "Code Beautifier",
"description": "Code Beautifier Beautify CSS, HTML and JS code.",
"link": "https://freecodetools.org/beautifier/",
"license": "Free"
},
{
"id": 36,
"category": "Tools",
"title": "Buttons Generator",
"description": "Generate Buttons to Your Web Site",
"link": "https://markodenic.com/tools/buttons-generator/",
"license": "Free"
},
{
"id": 37,
"category": "Illustrations",
"title": "GraphicSurf Illustrations",
"description": "You can free download illustrations. All this you can download for free and use for commercial purposes or for personal use.",
"link": "https://graphicsurf.com/category/illustrations/",
"license": "Freemium"
},
{
"id": 38,
"category": "Illustrations",
"title": "humaaans Illustrations",
"description": "humaaans Mix-&-match illustrations of people with a design library",
"link": "https://www.humaaans.com/",
"license": "Premium"
},
{
"id": 39,
"category": "Illustrations",
"title": "ManyPixels",
"description": "Discover new illustrations every week. Use them on your landing pages, blog posts, newsletters, social media graphics and more!",
"link": "https://www.manypixels.co/gallery",
"license": "Freemium"
},
{
"id": 40,
"category": "Illustrations",
"title": "Open Peeps",
"description": "A hand-drawn illustration library.",
"link": "https://www.openpeeps.com/",
"license": "Freemium"
},
{
"id": 41,
"category": "Illustrations",
"title": "Open Doodles",
"description": "A Free set of Open-Source illustrations for your next project.",
"link": "https://www.opendoodles.com/",
"license": "Freemium"
},
{
"id": 42,
"category": "Illustrations",
"title": "AbsurdDesign",
"description": "absurd illustrations that make sense.",
"link": "https://absurd.design/",
"license": "Freemium"
},
{
"id": 43,
"category": "Icons",
"title": "Simple Icons",
"description": "Free SVG icons for popular brands",
"link": "https://simpleicons.org",
"license": "Freemium"
},
{
"id": 44,
"category": "Icons",
"title": "ShutterStock",
"description": "One platform. Millions of ways to tell your story",
"link": "https://www.shutterstock.com/search/icons",
"license": "Freemium"
},
{
"id": 45,
"category": "Icons",
"title": "Shape Icons",
"description": "icons and illustrations fully customizable",
"link": "https://shape.so/browse",
"license": "Freemium"
},
{
"id": 46,
"category": "Icons",
"title": "Remixicon",
"description": "Simply Delightful Icon System",
"link": "https://remixicon.com",
"license": "Freemium"
},
{
"id": 47,
"category": "Icons",
"title": "Orion",
"description": "Icon Library Advanced Interactive Web Application Icons",
"link": "https://orioniconlibrary.com",
"license": "Freemium"
},
{
"id": 48,
"category": "Icons",
"title": "Online Web Icon",
"description": "YOU NEXT A THE ICONS OF WEB PROJECT STARTS HERE!",
"link": "https://www.onlinewebfonts.com/icon/",
"license": "Freemium"
},
{
"id": 49,
"category": "Icons",
"title": "The Noun Project",
"description": "The Worlds Most Diverse and Extensive Icon Collection",
"link": "https://thenounproject.com/icons/",
"license": "Freemium"
},
{
"id": 50,
"category": "Icons",
"title": "Google Material Icons",
"description": "Material Icons are available in five styles and a range of downloadable sizes and densities. The icons are based on the core Material Design principles and metrics.",
"link": "https://fonts.google.com/icons?selected=Material+Icons",
"license": "Freemium"
},
{
"id": 51,
"category": "Icons",
"title": "Line Icon",
"description": "Line Icons categorized into different categories - select, view edit, download SVG and start using",
"link": "https://lineicons.com/icons/",
"license": "Freemium"
},
{
"id": 52,
"category": "Icons",
"title": "pixel perfect icons",
"description": "Jam icons is a set of SVG icons designed for web projects",
"link": "https://jam-icons.com/",
"license": "Freemium"
},
{
"id": 53,
"category": "Icons",
"title": "Design Bombs",
"description": "Perfect icons for all your design",
"link": "https://www.designbombs.com/iconsweets2/",
"license": "Freemium"
},
{
"id": 54,
"category": "Icons",
"title": "icon scout",
"description": "Choose from ten different icon styles: colored outline, doodle, dual tone, flat, glyph, gradient, isometric, line, rounded or sticker",
"link": "https://iconscout.com/icons",
"license": "Freemium"
},
{
"id": 55,
"category": "Illustrations",
"title": "Icon scout Illustration",
"description": "Access the world's largest Design Ecosystem: Assets, Integrations, and Motion.",
"link": "https://iconscout.com/illustrations",
"license": "Freemium"
},
{
"id": 56,
"category": "Illustrations",
"title": "Icon scout 3D Illustration",
"description": "free and premium 3D illustrations",
"link": "https://iconscout.com/3ds",
"license": "Freemium"
},
{
"id": 57,
"category": "Icons",
"title": "Icons8",
"description": "Free icons that match each other",
"link": "https://icons8.com/icons",
"license": "Freemium"
},
{
"id": 58,
"category": "Illustrations",
"title": "Illustrations",
"description": "Free vector and 3D illustrations. Trendy. Cover all subjects",
"link": "https://icons8.com/illustrations/styles",
"license": "Freemium"
},
{
"id": 59,
"category": "Icons",
"title": "icon horse",
"description": "Confidently use Icon Horse and get bulletproof favicons with fallbacks if no icon exists.",
"link": "https://icon.horse",
"license": "Freemium"
},
{
"id": 60,
"category": "Icons",
"title": "Hero Icons",
"description": "Beautiful hand-crafted SVG icons, by the makers of Tailwind CSS.",
"link": "https://heroicons.com",
"license": "Freemium"
},
{
"id": 61,
"category": "Icons",
"title": "Classic Heroicons",
"description": "Heroicons are a unique set of icons for your marketing website that make it easy to customize with CSS to better align to your brand.",
"link": "https://classic.heroicons.com",
"license": "Freemium"
},
{
"id": 62,
"category": "Icons",
"title": "Font Awesome",
"description": "Take the hassle out of icons in your website.",
"link": "https://fontawesome.com",
"license": "Freemium"
},
{
"id": 63,
"category": "Icons",
"title": "Free Icons",
"description": "THE LARGEST DATABASE OF FREE ICONS",
"link": "https://freeicons.io",
"license": "Freemium"
},
{
"id": 64,
"category": "Icons",
"title": "Flaticon",
"description": "Free Icons and Stickers for your projects. Resources made by and for designers. PNG, SVG, EPS, PSD and CSS formats",
"link": "https://www.flaticon.com",
"license": "Freemium"
},
{
"id": 65,
"category": "Icons",
"title": "Feather Icons",
"description": "Simply beautiful open source icons",
"link": "https://feathericons.com",
"license": "Freemium"
},
{
"id": 66,
"category": "Icons",
"title": "CSS Icons",
"description": "Open-source CSS, SVG and Figma UI Icons Available in SVG Sprite, styled-components, NPM & API",
"link": "https://css.gg",
"license": "Freemium"
},
{
"id": 67,
"category": "Icons",
"title": "Core UI",
"description": "Bootstrap Admin Dashboard Template & UI Components Library",
"link": "https://coreui.io/icons/",
"license": "Freemium"
},
{
"id": 68,
"category": "Icons",
"title": "Circum Icons",
"description": "Consistent open source icons for React, Vue and Svelte",
"link": "https://circumicons.com",
"license": "Freemium"
},
{
"id": 69,
"category": "Icons",
"title": "Boxicons",
"description": "High Quality Web Icons Simple Open Source icons carefully crafted for designers & developers",
"link": "https://boxicons.com",
"license": "Freemium"
},
{
"id": 70,
"category": "Icons",
"title": "Smash Icons",
"description": "The Smashicons library is constantly growing. Sign up for our Pro license and unlock all Pro icons and Premium design resources",
"link": "https://smashicons.com",
"license": "Freemium"
},
{
"id": 71,
"category": "Illustrations",
"title": "Smash illustrations",
"description": "Awesome illustration constructor with colorful and trendy characters",
"link": "https://usesmash.com/",
"license": "Freemium"
},
{
"id": 72,
"category": "Illustrations",
"title": "Uihut Illustrations",
"description": "UI Kit, illustration and graphics",
"link": "https://www.uihut.com/illustrations",
"license": "Freemium"
},
{
"id": 73,
"category": "Icons",
"title": "Uihut Icons",
"description": "Open-source CSS, SVG and Figma UI Icons Available in SVG Sprite",
"link": "https://www.uihut.com/icons",
"license": "Freemium"
},
{
"id": 74,
"category": "Mobile App",
"title": "Uihut Mobile App Design",
"description": "App Designs",
"link": "https://www.uihut.com/mobile-app-designs",
"license": "Freemium"
},
{
"id": 75,
"category": "Illustrations",
"title": "Uihut 3D illustration",
"description": "3D illustration design for you",
"link": "https://www.uihut.com/3d-illustrations",
"license": "Freemium"
},
{
"id": 76,
"category": "Illustrations",
"title": "Flexiple",
"description": "Royalty free Vector Illustrations for Commercial Use",
"link": "https://flexiple.com/illustrations/",
"license": "Freemium"
},
{
"id": 77,
"category": "Illustrations",
"title": "Isometric Love illustration",
"description": "Cute Isometric Objects For Your Design",
"link": "https://isometriclove.com/",
"license": "Freemium"
},
{
"id": 78,
"category": "Illustrations",
"title": "Iradesign illustrations",
"description": "Discover IRA illustrations to power up your project.",
"link": "https://iradesign.io/gallery/illustrations",
"license": "Freemium"
},
{
"id": 79,
"category": "Illustrations",
"title": "Interfacer Illustrations",
"description": "Interfacer is a collection of high quality free Design Resources created by the most talented and awesome people on the Internet",
"link": "https://interfacer.xyz",
"license": "Freemium"
},
{
"id": 80,
"category": "Icons",
"title": "Interfacer Icons",
"description": "Interfacer is a collection of high quality free Design Resources created by the most talented and awesome people on the Internet.",
"link": "https://interfacer.xyz",
"license": "Freemium"
},
{
"id": 81,
"category": "Illustrations",
"title": "Artify Illustrations",
"description": "Illustrations from the Artify library directly inside Figma",
"link": "https://www.artify.co/vector-illustrations",
"license": "Freemium"
},
{
"id": 82,
"category": "Illustrations",
"title": "Freellustrations",
"description": "Collection of high-resolution vector or illustrations background images for modern websites and landing pages",
"link": "https://www.freellustrations.com",
"license": "Freemium"
},
{
"id": 83,
"category": "Illustrations",
"title": "error404",
"description": "Royalty free illustrations for 404 pages.",
"link": "https://error404.fun",
"license": "Freemium"
},
{
"id": 84,
"category": "Icons",
"title": "Eva Icons",
"description": "A pack of more than 480 beautifully crafted Open Source icons for common actions and items",
"link": "https://akveo.github.io/eva-icons/",
"license": "Free"
},
{
"id": 85,
"category": "Illustrations",
"title": "Avataaars",
"description": "Create avatar illustrations in Sketch App with this free library. Combine clothes, hair, emotions, accesories, and colors",
"link": "https://avataaars.com",
"license": "Free"
},
{
"id": 86,
"category": "Illustrations",
"title": "Blush",
"description": "Illustrations for Everyone. Create, mix, and customize illustrations made by artists around the world",
"link": "https://blush.design",
"license": "Freemium"
},
{
"id": 87,
"category": "Icons",
"title": "coolicons",
"description": "Carefully designed SVG icons for your next project",
"link": "https://coolicons.cool/",
"license": "Free"
},
{
"id": 88,
"category": "Icons",
"title": "Delesign",
"description": "Use our royalty-free designs for your website, social media, blog, email newsletters, and more",
"link": "https://delesign.com/free-designs/graphics/",
"license": "Free"
},
{
"id": 89,
"category": "Illustrations",
"title": "Doodle Ipsum",
"description": "Illustration placeholders for developers",
"link": "https://doodleipsum.com",
"license": "Free"
},
{
"id": 90,
"category": "Illustrations",
"title": "Fresh Folk",
"description": "An illustration library of people and objects",
"link": "https://fresh-folk.com",
"license": "Free"
},
{
"id": 91,
"category": "Illustrations",
"title": "Mega Doodles Pack",
"description": "Big vector pack with hand-drawn doodles for presentations, social media, blog posts and so on",
"link": "https://github.com/MariaLetta/mega-doodles-pack",
"license": "Free"
},
{
"id": 92,
"category": "Illustrations",
"title": "Growwwkit Phonies",
"description": "A set of 8 simple, black & white, stylish illustrations for landing pages, mobile screens and other editorial purposes.",
"link": "https://growwwkit.com/illustrations/phonies",
"license": "Freemium"
},
{
"id": 93,
"category": "Icons",
"title": "Material Icons Library",
"description": "Free collection of 1000+ Icons for popular Graphics Tools",
"link": "https://icons.pixsellz.io/",
"license": "Free"
},
{
"id": 94,
"category": "Icons",
"title": "Icon Store",
"description": "A library of free vector icons for personal and commercial projects, designed by first-class designers",
"link": "https://iconstore.co/",
"license": "Free"
},
{
"id": 95,
"category": "Icons",
"title": "ICONSVG",
"description": "A tool to simplify the process of finding and generating common icons for your project.",
"link": "https://iconsvg.xyz/",
"license": "Free"
},
{
"id": 96,
"category": "Illustrations",
"title": "illlustrations",
"description": "Open source illustrations kit. Designed all 100 awesome illustrations during 100 days of illustration challenge",
"link": "https://illlustrations.co",
"license": "Free"
},
{
"id": 97,
"category": "Icons",
"title": "illustrio",
"description": "A smarter icon library. Build something great with 100% customizable icons. 100% free",
"link": "https://illustrio.com/",
"license": "Free"
},
{
"id": 98,
"category": "Icons",
"title": "Essential Glyphs",
"description": "Essential Glyphs created to cover your needs in perfect-shaped icons. Adapted for small and large sizes",
"link": "https://interface.market/essential/basic-pack",
"license": "Free"
},
{
"id": 99,
"category": "Icons",
"title": "Ionicons",
"description": "Beautifully crafted open source icons. Premium designed icons for use in web, iOS, Android, and desktop apps",
"link": "https://ionicons.com/",
"license": "Free"
},
{
"id": 100,
"category": "Illustrations",
"title": "IsoFlat",
"description": "Download free isometric vectors & graphic resources",
"link": "https://isoflat.com",
"license": "Free"
},
{
"id": 101,
"category": "Icons",
"title": "Keyicons",
"description": "The clean icon set you were looking for",
"link": "https://keyicons.com/",
"license": "Free"
},
{
"id": 102,
"category": "Illustrations",
"title": "Lukasz Adam",
"description": "Free open source illustrations. You can do whatever you want with them",
"link": "https://lukaszadam.com/illustrations",
"license": "Free"
},
{
"id": 103,
"category": "Illustrations",
"title": "Mixkit Art",
"description": "Library of beautiful free art and illustration images",
"link": "https://mixkit.co/art",
"license": "Free"
},
{
"id": 104,
"category": "Icons",
"title": "Nucleo",
"description": "Library of 26500+ icons, and a powerful application to collect, customize and export all your icons",
"link": "https://nucleoapp.com/",
"license": "Free"
},
{
"id": 105,
"category": "Icons",
"title": "Phosphor Icons",
"description": "Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really",
"link": "https://phosphoricons.com/",
"license": "Free"
},
{
"id": 106,
"category": "Icons",
"title": "Phosphor Icons",
"description": "Phosphor is a flexible icon family for interfaces, diagrams, presentations — whatever, really",
"link": "https://phosphoricons.com/",
"license": "Free"
},
{
"id": 107,
"category": "Illustrations",
"title": "Pngtree",
"description": "Millions of PNG images, backgrounds and vectors for free download",
"link": "https://pngtree.com",
"license": "Freemium"
},
{
"id": 108,
"category": "Icons",
"title": "Polaris Icons",
"description": "A collection of simple and informative icons that draw on the visual language of the Polaris design system",
"link": "https://polaris-icons.shopify.com/",
"license": "Free"
},
{
"id": 109,
"category": "Illustrations",
"title": "Pof-Pof Illustration Kit",
"description": "Beautiful and colorful illustrations for your commercial projects",
"link": "https://products.ls.graphics/pof-pof",
"license": "Freemium"
},
{
"id": 110,
"category": "Illustrations",
"title": "Sapiens Character Builder",
"description": "Meet Sapiens, a beautiful library of modular, component-based character illustrations free to use for all your projects",
"link": "https://sapiens.ui8.net",
"license": "Freemium"
},
{
"id": 111,
"category": "Illustrations",
"title": "Pulse Illustration Kit",
"description": "The kit includes Sketch symbols and Figma components which you can combine and create your own story",
"link": "https://sleekbundle.com/product/pulse-illustration-kit",
"license": "Freemium"
},
{
"id": 112,
"category": "Illustrations",
"title": "Stubborn",
"description": "Free illustrations generator for Figma and Sketch. Get the opportunity to design your characters using symbols and styles",
"link": "https://stubborn.fun",
"license": "Freemium"
},
{
"id": 113,
"category": "Icons",
"title": "System UIcons",
"description": "A free icon set designed for systems and products. Use how you want, without attribution.",
"link": "https://systemuicons.com/",
"license": "Free"
},
{
"id": 114,
"category": "Icons",
"title": "Tilda Icons",
"description": "Download free icons for landing pages. More than 700 vector icons, collected in 43 sets for business",
"link": "https://tilda.cc/free-icons/",
"license": "Free"
},
{
"id": 115,
"category": "Icons",
"title": "Twemoji",
"description": "Twitter’s open source emoji has you covered for all your project's emoji needs, featuring 2,685 emojis",
"link": "https://twemoji.twitter.com/",
"license": "Free"
},
{
"id": 116,
"category": "Icons",
"title": "useAnimations",
"description": "A micro-animations library. Animated icons in Lottie Framework and After Effects for immediate implementation to your apps or websites",
"link": "https://useanimations.com/",
"license": "Free"
},
{
"id": 117,
"category": "Icons",
"title": "VisualPharm",
"description": "Free SVG Icons with super-fast search and free Coke. Built for fun by Icons8",
"link": "https://visualpharm.com/",
"license": "Free"
},
{
"id": 118,
"category": "Illustrations",
"title": "IRA Design",
"description": "Build your own amazing illustrations. Using our awesome gradients and hand drawn sketch components",
"link": "https://www.creative-tim.com/ira-design",
"license": "Free"
},
{
"id": 119,
"category": "Illustrations",
"title": "Dimensions.Guide",
"description": "Database of dimensioned drawings. A free platform for increasing public and professional knowledge of life and design",
"link": "https://www.dimensions.guide",
"license": "Freemium"
},
{
"id": 120,
"category": "Illustrations",
"title": "Glaze Illustrations",
"description": "Memorable products, brands, & presentations start with curated royalty-free illustration library",
"link": "https://www.glazestock.com",
"license": "Free"
},
{
"id": 121,
"category": "Icons",
"title": "IconBros",
"description": "2448+ free icons grouped in 66 collections",
"link": "https://www.iconbros.com/",
"license": "Free"
},
{
"id": 122,
"category": "Icons",
"title": "Ikonate",
"description": "Customise, adjust and download free vector icons",
"link": "https://www.ikonate.com/",
"license": "Free"
},
{
"id": 123,
"category": "Illustrations",
"title": "404 Illustrations",
"description": "Trendy, ready to use images for your 404 page",
"link": "https://www.kapwing.com/404-illustrations",
"license": "Free"
},
{
"id": 124,
"category": "Illustrations",
"title": "Charco Illustrations",
"description": "A set of 16 handcrafted illustrations for your web & app projects",
"link": "https://www.karthiksrinivas.in/charco",
"license": "Free"
},
{
"id": 125,
"category": "Web",
"title": "Landing Love",
"description": "A showcase of The Best Animation Websites. Fantastic animation website designs for inspiration..",
"link": "https://www.landing.love/",
"license": "Free"