-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.ts
1528 lines (1521 loc) · 39.1 KB
/
resources.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
import {
LucideIcon,
Image,
Monitor,
FileSearchIcon,
Hammer,
FileJsonIcon,
Paintbrush,
Camera,
Smartphone,
Code,
KeyRound,
Presentation,
LayoutDashboard,
Server,
Bot,
Database,
BookOpenCheck,
ShoppingBasket,
PaintRoller,
CaseSensitive,
Laptop,
Mail,
Accessibility,
Globe,
Puzzle,
Sheet,
Palette,
MehIcon,
PenLine,
Package,
FolderOpen,
BatteryCharging,
SearchCheckIcon,
Book,
Keyboard,
SmartphoneNfc,
Forklift,
PenTool,
Youtube,
FileBadge2,
Blocks,
DatabaseZap,
FileSliders,
} from "lucide-react";
export interface Resource {
name: string;
description: string;
category: (
| "Boilerplate"
| "CSS"
| "Components"
| "Documentation"
| "Backgrounds"
| "Images"
| "Video"
| "UI UX"
| "Snippets & Hooks"
| "Authentication"
| "Animations"
| "CMS"
| "API"
| "AI"
| "Database"
| "Learning & Challenges"
| "SAAS"
| "Design"
| "Fonts"
| "VS Code Extensions"
| "Email"
| "Accessibility"
| "Web Hosting"
| "Browser Extensions"
| "Cheatsheets"
| "Color"
| "Icons"
| "Illustrations"
| "Libraries & Packages"
| "Open Source"
| "Performance"
| "Screenshots"
| "SEO"
| "Books"
| "Typing"
| "Social Media"
| "Website Builders"
| "Writing"
| "Youtube Channels"
| "Frameworks"
| "Web3"
| "Data Visualization"
| "System Design"
)[];
url: string;
paid: "Free" | "Paid" | "Free Plan Available";
keywords?: string[];
image: string;
}
export interface Category {
name: string;
icon: LucideIcon;
}
export const categories: Category[] = [
{ icon: FileJsonIcon, name: "Boilerplate" },
{ icon: Paintbrush, name: "CSS" },
{ icon: Hammer, name: "Components" },
{ icon: FileSearchIcon, name: "Documentation" },
{ icon: Monitor, name: "Backgrounds" },
{ icon: Image, name: "Images" },
{ icon: Camera, name: "Video" },
{ icon: Smartphone, name: "UI UX" },
{ icon: Code, name: "Snippets & Hooks" },
{ icon: KeyRound, name: "Authentication" },
{ icon: Presentation, name: "Animations" },
{ icon: LayoutDashboard, name: "CMS" },
{ icon: Server, name: "API" },
{ icon: Bot, name: "AI" },
{ icon: Database, name: "Database" },
{ icon: BookOpenCheck, name: "Learning & Challenges" },
{ icon: ShoppingBasket, name: "SAAS" },
{ icon: PaintRoller, name: "Design" },
{ icon: CaseSensitive, name: "Fonts" },
{ icon: Laptop, name: "VS Code Extensions" },
{ icon: Mail, name: "Email" },
{ icon: Accessibility, name: "Accessibility" },
{ icon: Globe, name: "Web Hosting" },
{ icon: Puzzle, name: "Browser Extensions" },
{ icon: Sheet, name: "Cheatsheets" },
{ icon: Palette, name: "Color" },
{ icon: MehIcon, name: "Icons" },
{ icon: PenTool, name: "Illustrations" },
{ icon: Package, name: "Libraries & Packages" },
{ icon: FolderOpen, name: "Open Source" },
{ icon: BatteryCharging, name: "Performance" },
{ icon: SearchCheckIcon, name: "SEO" },
{ icon: Book, name: "Books" },
{ icon: Keyboard, name: "Typing" },
{ icon: SmartphoneNfc, name: "Social Media" },
{ icon: Forklift, name: "Website Builders" },
{ icon: PenLine, name: "Writing" },
{ icon: Youtube, name: "Youtube Channels" },
{ icon: FileBadge2, name: "Frameworks" },
{ icon: Blocks, name: "Web3" },
{ icon: DatabaseZap, name: "Data Visualization" },
{ icon: FileSliders, name: "System Design"}
].sort((a, b) => {
return a.name.localeCompare(b.name);
});
export const resources: Resource[] = [
{
name: "ShipFast",
description: "A Next.js boilerplate for building SaaS applications",
category: ["Boilerplate", "SAAS"],
url: "https://shipfa.st/",
paid: "Paid",
keywords: ["next.js", "boilerplate", "saas", "shipfast"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/shipfast.jpg",
},
{
name: "LogoFast",
description: "Create your own logo in seconds for free.",
category: ["Images"],
url: "https://logofa.st/",
paid: "Free",
keywords: ["logo", "design", "images", "logofast", "logos", "brand"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/logofast.jpg",
},
{
name: "Precedent",
description:
"A Next.js starter template with framer motion and reusable hooks/components",
category: ["Boilerplate", "Components", "Snippets & Hooks"],
url: "https://precedent.dev",
paid: "Free",
keywords: [
"next.js",
"boilerplate",
"framer",
"motion",
"hooks",
"components",
"snippets",
"precedent",
"template",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/precedent.jpg",
},
{
name: "useHooks",
description: "Collection of React hooks curated by the community",
category: ["Documentation", "Snippets & Hooks"],
url: "https://usehooks.com",
paid: "Free",
keywords: [
"react",
"hooks",
"documentation",
"docs",
"usehooks",
"snippets",
"use",
"hooks",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/usehooks.jpg",
},
{
name: "shadcn-ui",
description:
"A collection of UI components for React. Built with Tailwind CSS",
category: ["Components", "UI UX", "CSS"],
url: "https://ui.shadcn.com",
paid: "Free",
keywords: [
"react",
"tailwind",
"ui",
"components",
"shadcn-ui",
"css",
"web",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/shadcnui.jpg",
},
{
name: "shadcn-ui Theme Generator",
description: "A theme generator for shadcn-ui",
category: ["UI UX", "CSS"],
url: "https://zippystarter.com/tools/shadcn-ui-theme-generator",
paid: "Free",
keywords: [
"react",
"tailwind",
"ui",
"components",
"theme",
"generator",
"shadcn-ui",
"css",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/shadcnthemes.jpg",
},
{
name: "Ibelick UI",
description: "A unique collection of modern UI components and effects",
category: ["Components", "UI UX", "CSS"],
url: "https://ui.ibelick.com",
paid: "Free",
keywords: [
"react",
"tailwind",
"ui",
"components",
"effects",
"css",
"web",
"ibelick",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/ibelickui.jpg",
},
{
name: "Ibelick LAB",
description: "A collection of experimental UI components and effects",
category: ["Components", "CSS"],
url: "https://www.julienthibeaut.xyz/lab",
paid: "Free",
keywords: [
"react",
"tailwind",
"ui",
"components",
"experimental",
"css",
"web",
"ibelick",
"lab",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/ibelicklab.jpg",
},
{
name: "Ibelick Backgrounds",
description:
"A collection of modern and unique backgrounds for your website",
category: ["CSS", "Backgrounds", "Snippets & Hooks"],
url: "https://bg.ibelick.com",
paid: "Free",
keywords: ["backgrounds", "images", "ui", "css", "web", "bg", "ibelick"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/ibelickbg.jpg",
},
{
name: "Ibelick Buttons",
description: "A collection of modern and unique buttons for your website",
category: ["UI UX", "CSS", "Components"],
url: "https://buttons.ibelick.com",
paid: "Free",
keywords: ["buttons", "ui", "css", "web", "ibelick", "components"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/ibelickbuttons.jpg",
},
{
name: "Ibelick Animations",
description:
"A curated collection of animations crafted exclusively with Tailwind CSS",
category: ["Animations", "CSS", "UI UX"],
url: "https://animation.ibelick.com",
paid: "Free",
keywords: ["animations", "css", "tailwind", "ui", "ux", "web", "ibelick"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/ibelickanimations.jpg",
},
{
name: "CSS Background Generator",
description:
"Beautiful pure CSS background patterns that you can actually use in your projects!",
category: ["CSS", "Backgrounds"],
url: "https://www.magicpattern.design/tools/css-backgrounds",
paid: "Free",
keywords: [
"css",
"background",
"patterns",
"images",
"ui",
"ux",
"web",
"css",
"generator",
"bg",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/cssbackgrounds.jpg",
},
{
name: "MagicPattern",
description: "10+ tools for designers and developers",
category: ["CSS", "Backgrounds", "Design"],
url: "https://www.magicpattern.design",
paid: "Paid",
keywords: [
"designers",
"developers",
"images",
"ui",
"ux",
"css",
"bg",
"web",
"magicpattern",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/magicpattern.jpg",
},
{
name: "UploadThing",
description: "A simple file uploader for your web app",
category: ["API", "CMS", "Images", "Video"],
url: "https://uploadthing.com",
paid: "Free Plan Available",
keywords: [
"file uploader",
"api",
"cms",
"images",
"video",
"uploadthing",
"web",
"app",
"upload",
"thing",
"file",
"uploader",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/uploadthing.jpg",
},
{
name: "Tailwind UI",
description:
"Beautiful UI components, crafted by the creators of Tailwind CSS",
category: ["UI UX", "CSS", "Components", "Boilerplate"],
url: "https://tailwindui.com",
paid: "Paid",
keywords: [
"tailwind",
"ui",
"components",
"css",
"boilerplate",
"tailwindui",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/tailwindui.jpg",
},
{
name: "Tailwind CSS",
description:
"A utility-first CSS framework for rapidly building custom designs",
category: ["CSS", "Frameworks"],
url: "https://tailwindcss.com",
paid: "Free",
keywords: ["tailwind", "css", "ui", "framework", "tailwindcss"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/tailwindcss.jpg",
},
{
name: "DevUI",
description: "A collection of modern UI components for developers",
category: ["UI UX", "CSS", "Components"],
url: "https://www.devui.io/",
paid: "Free",
keywords: ["react", "tailwind", "ui", "components", "css"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/devui.jpg",
},
{
name: "UIVerse",
description: "Open-Source UI elements for any project",
category: ["UI UX", "CSS", "Components"],
url: "https://uiverse.io",
paid: "Free",
keywords: ["react", "tailwind", "ui", "components", "css", "uiverse"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/uiverse.jpg",
},
{
name: "Code Animations",
description: "Beautiful code animations for social media and websites",
category: ["Animations", "Video"],
url: "https://www.animate-code.com",
paid: "Free",
keywords: [
"code",
"animations",
"video",
"social media",
"websites",
"animate",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/codeanimations.jpg",
},
{
name: "sharpen.design",
description: "Design prompts to sharpen your design skills",
category: ["Learning & Challenges", "Design"],
url: "https://sharpen.design",
paid: "Free",
keywords: [
"design prompts",
"ui",
"ux",
"practice",
"design",
"sharpen",
"skills",
"sharpen.design",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/sharpendesign.jpg",
},
{
name: "Design Resources",
description: "A github repository with tons of design resources",
category: ["Design", "Documentation"],
url: "https://github.com/bradtraversy/design-resources-for-developers",
paid: "Free",
keywords: [
"design resources",
"ui",
"ux",
"documentation",
"docs",
"design",
"resources",
"github",
"bradtraversy",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/designresources.jpg",
},
{
name: "Figma",
description: "Collaborative interface design tool",
category: ["UI UX", "Design"],
url: "https://www.figma.com",
paid: "Free Plan Available",
keywords: ["design tool", "ui", "ux", "figma", "interface"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/figma.jpg",
},
{
name: "Spline - 3D Design Tool",
description: "A 3D design tool for the web",
category: ["UI UX", "Design", "Animations"],
url: "https://spline.design",
paid: "Free",
keywords: [
"3d design",
"ui",
"ux",
"design",
"animations",
"spline",
"3d",
"tool",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/spline.jpg",
},
{
name: "Stack Sorted",
description: "A curated list of community components & element designs",
category: ["Design", "Components", "CSS"],
url: "https://stacksorted.com",
paid: "Free",
keywords: [
"element designs",
"ui",
"ux",
"components",
"css",
"stacksorted",
"community",
"stack",
"sorted",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/stacksorted.jpg",
},
{
name: "Dribbble",
description: "Discover the world’s top designers & creatives",
category: ["Design"],
url: "https://dribbble.com",
paid: "Free",
keywords: ["designers", "creatives", "ui", "ux", "design", "dribbble"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/dribbble.jpg",
},
{
name: "LogoShaper",
description: "A simple logo maker for your projects",
category: ["Images"],
url: "https://www.logoshaper.co",
paid: "Free",
keywords: ["logo", "design", "images", "logoshaper", "logos", "brand"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/logoshaper.jpg",
},
{
name: "Next-Auth",
description: "Authentication for Next.js",
category: ["Authentication"],
url: "https://next-auth.js.org",
paid: "Free",
keywords: ["next.js", "authentication", "next-auth", "auth", "next"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/nextauth.jpg",
},
{
name: "Clerk",
description: "The most comprehensive User Management Platform",
category: ["Authentication"],
url: "https://clerk.com",
paid: "Free Plan Available",
keywords: ["user management", "authentication", "clerk", "auth", "users"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/clerk.jpg",
},
{
name: "Lucide",
description: "A simply beautiful open-source icon set",
category: ["Components", "Icons"],
url: "https://lucide.dev",
paid: "Free",
keywords: ["icon set", "icons", "images", "components", "lucide"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/lucide.jpg",
},
{
name: "Strapi",
description: "The leading open-source headless CMS",
category: ["CMS", "API"],
url: "https://strapi.io",
paid: "Free Plan Available",
keywords: ["open-source", "headless", "cms", "strapi", "api", "cms"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/strapi.jpg",
},
{
name: "Replicate",
description: "AI API for generating synthetic data",
category: ["AI", "API"],
url: "https://replicate.com/",
paid: "Paid",
keywords: ["ai", "api", "synthetic data", "replicate", "data"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/replicate.jpg",
},
{
name: "MongoDB",
description: "The most popular database for modern apps",
category: ["Database"],
url: "https://www.mongodb.com",
paid: "Free Plan Available",
keywords: ["database", "mongodb", "storage", "data", "mongo", "db"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/mongodb.jpg",
},
{
name: "PlanetScale",
description: "The database for developers",
category: ["Database"],
url: "https://planetscale.com",
paid: "Free Plan Available",
keywords: [
"database",
"planetscale",
"mysql",
"storage",
"data",
"db",
"sql",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/planetscale.jpg",
},
{
name: "Convex",
description:
"A better type of backend. Convex is the fullstack TypeScript development platform. Replace your database, server functions and glue code.",
category: ["Database", "Authentication"],
url: "https://www.convex.dev",
paid: "Free Plan Available",
keywords: [
"database",
"convex",
"authentication",
"api",
"typescript",
"db",
"fullstack",
"backend",
"server",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/convex.jpg",
},
{
name: "Supabase",
description: "The open source Firebase alternative",
category: ["Database", "Authentication"],
url: "https://supabase.com",
paid: "Free Plan Available",
keywords: [
"database",
"supabase",
"authentication",
"firebase",
"api",
"db",
"server",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/supabase.jpg",
},
{
name: "BigDevSoon",
description: "Discover new projects to practice your coding skills",
category: ["Learning & Challenges"],
url: "https://app.bigdevsoon.me/projects",
paid: "Free",
keywords: [
"coding projects",
"projects",
"coding",
"bigdevsoon",
"skills",
"dev",
"soon",
"big",
"practice",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/bigdevsoon.jpg",
},
{
name: "AI Skeletons",
description: "AI generated skeletons based on your components",
category: ["AI", "Components"],
url: "https://gpt-skeleton.vercel.app",
paid: "Free",
keywords: [
"ai",
"skeletons",
"components",
"ui",
"ux",
"gpt",
"skeleton",
"loading",
"css",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/aiskeletons.jpg",
},
{
name: "Framer Motion",
description: "A production-ready animation library for React",
category: ["Animations", "Libraries & Packages"],
url: "https://www.framer.com/motion/",
paid: "Free",
keywords: [
"animation library",
"react",
"framer motion",
"animations",
"ui",
"ux",
"react",
"framer",
"motion",
"library",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/framermotion.jpg",
},
{
name: "Aceternity UI",
description:
"Copy paste the most trending components and use them in your websites without having to worry about styling and animations.",
category: ["UI UX", "Components", "Animations"],
url: "https://ui.aceternity.com",
paid: "Free",
keywords: [
"react",
"tailwind",
"ui",
"components",
"css",
"animations",
"web",
"aceternity",
"aceternityui",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/aceternityui.jpg",
},
{
name: "Squoosh",
description: "Compress images without sacrificing quality",
category: ["Images", "Performance"],
url: "https://squoosh.app",
paid: "Free",
keywords: [
"compress",
"images",
"quality",
"compress images",
"squoosh",
"app",
"web",
"performance",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/squoosh.jpg",
},
{
name: "Google Fonts",
description: "Free, open-source fonts optimized for the web",
category: ["Design", "Fonts"],
url: "https://fonts.google.com",
paid: "Free",
keywords: ["google fonts", "fonts", "open-source", "web", "google", "web"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/googlefonts.jpg",
},
{
name: "CodePen",
description:
"CodePen is a social development environment for front-end designers and developers. Build and deploy a website, show off your work, build test cases to learn and debug, and find inspiration.",
category: ["CSS", "Components", "Learning & Challenges"],
url: "https://codepen.io",
paid: "Free",
keywords: ["codepen", "front-end", "designers", "developers", "web"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/codepen.jpg",
},
{
name: "Clippy",
description: "CSS clip-path maker",
category: ["CSS", "Images"],
url: "https://bennettfeely.com/clippy/",
paid: "Free",
keywords: [
"css",
"clip-path",
"clip-path maker",
"clippy",
"web",
"css",
"images",
"bennettfeely",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/clippy.jpg",
},
{
name: "godly.website",
description:
"Astronomically good web design inspiration from all over the internet.",
category: ["UI UX", "Design"],
url: "https://godly.website",
paid: "Free",
keywords: [
"web design",
"inspiration",
"web",
"design",
"godly",
"website",
"godly.website",
"ui",
"ux",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/godly.jpg",
},
{
name: "Open Doodles",
description:
"Open Doodles is a set of free illustrations that embraces the idea of Open Design.",
category: ["Design", "Illustrations"],
url: "https://www.opendoodles.com",
paid: "Free",
keywords: ["illustrations", "open design", "design", "images", "doodles"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/opendoodles.jpg",
},
{
name: "Footer.design",
description:
"Footer fills the need for footer-specific inspiration in the web design space.",
category: ["Design"],
url: "https://www.footer.design",
paid: "Free",
keywords: ["footer", "inspiration", "web", "design", "footer.design"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/footer.jpg",
},
{
name: "Blitz.js",
description:
"The Missing Fullstack Toolkit for Next.js. Providing battle-tested libraries and conventions for shipping and scaling world wide applications.",
category: ["Boilerplate", "Components", "Frameworks", "Authentication"],
url: "https://blitzjs.com",
paid: "Free",
keywords: ["next.js", "fullstack", "toolkit", "blitz.js", "blitz", "js"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/blitz.jpg",
},
{
name: "Favicon.io",
description:
"The only favicon generator you need for your next project. Quickly generate your favicon from text, image, or choose from hundreds of emojis.",
category: ["Images", "SEO"],
url: "https://favicon.io",
paid: "Free",
keywords: ["favicon", "generator", "favicon.io", "images", "seo"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/faviconio.jpg",
},
{
name: "Fontshare",
description:
"Fontshare is a free fonts service launched by the Indian Type Foundry (ITF). It’s a growing collection of professional grade fonts that are 100% free for personal and commercial use.",
category: ["Fonts", "Design"],
url: "https://www.fontshare.com",
paid: "Free",
keywords: [
"fonts",
"fontshare",
"itf",
"indian type foundry",
"design",
"ui",
"ux",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/fontshare.jpg",
},
{
name: "React TS Cheatsheet",
description:
"Cheatsheets for experienced React developers getting started with TypeScript.",
category: ["Documentation", "Cheatsheets"],
url: "https://react-typescript-cheatsheet.netlify.app",
paid: "Free",
keywords: [
"react",
"typescript",
"cheatsheet",
"documentation",
"docs",
"react-ts",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/reactts.jpg",
},
{
name: "Flowbite",
description:
"Build websites even faster with components on top of Tailwind CSS.",
category: ["Components", "UI UX"],
url: "https://flowbite.com",
paid: "Free Plan Available",
keywords: ["tailwind", "css", "components", "flowbite", "ui", "ux"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/flowbite.jpg",
},
{
name: "Prettier",
description: "An opinionated code formatter",
category: ["VS Code Extensions"],
url: "https://prettier.io",
paid: "Free",
keywords: [
"prettier",
"code",
"formatter",
"VS Code Extensions",
"vscode",
"extension",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/prettier.jpg",
},
{
name: "Console Ninja",
description:
"Stop feeling lost and inefficient when debugging via logs. Use the right tool and debug using console.log like a ninja.",
category: ["VS Code Extensions"],
url: "https://console-ninja.com",
paid: "Free",
keywords: ["console", "ninja", "debugging", "VS Code Extensions"],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/consoleninja.jpg",
},
{
name: "Error Lens",
description:
"ErrorLens turbo-charges language diagnostic features by making diagnostics stand out more prominently, highlighting the entire line wherever a diagnostic is generated by the language and also prints the message inline.",
category: ["VS Code Extensions"],
url: "https://marketplace.visualstudio.com/items?itemName=usernamehw.errorlens",
paid: "Free",
keywords: [
"error lens",
"diagnostics",
"VS Code Extensions",
"vscode",
"extension",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/errorlens.jpg",
},
{
name: "Path Intellisense",
description: "Visual Studio Code plugin that autocompletes filenames.",
category: ["VS Code Extensions"],
url: "https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense",
paid: "Free",
keywords: [
"path",
"intellisense",
"VS Code Extensions",
"vscode",
"extension",
],
image:
"https://res.cloudinary.com/doopql2iw/image/upload/v1710038150/pathintellisense.jpg",
},
{
name: "Tailwind CSS Intellisense",
description:
"Tailwind CSS IntelliSense enhances the Tailwind development experience by providing Visual Studio Code users with advanced features such as autocomplete, syntax highlighting, and linting.",
category: ["VS Code Extensions"],
url: "https://marketplace.visualstudio.com/items?itemName=bradlc.VS Code Extensions-tailwindcss",
paid: "Free",