-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact-themes.json
1523 lines (1522 loc) · 94.9 KB
/
react-themes.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
[
{
"name": "CodedThemes",
"description": "Explore react admin dashboard templates crafted with developers in mind by our partners at [CodedThemes](https://codedthemes.com). Download now to expedite the development of your real-time web applications, saving you countless hours in design and development.",
"seeMoreUrl": "https://codedthemes.com/item/category/templates/react-templates/",
"products": [
{
"id": 1,
"create date": "1-8-2024",
"name": "Berry Free React Dashboard",
"price": 0,
"description": "Free React Material UI Admin Template",
"live-url": "https://berrydashboard.io/free/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/berry-free-react.png",
"download-link": "https://codedthemes.com/item/berry-mui-free-react-admin-template/",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=codedthemes&repo=berry-free-react-admin-template&type=star&count=true&size=large",
"categories": "MUI, React",
"technology-stack": ["material-ui", "react", "vite", "js"],
"long-description": "Berry MUI Free React Dashboard is a sophisticated and versatile admin template designed to enhance user experience with a sleek, modern interface. Built with React and Material-UI, it offers high customizability and responsiveness for optimal performance across all devices.\t<br/><br/><b>Features –</b><br/><ul><li>Modern aesthetics UI design</li><li>Material-UI components</li><li>Fully Responsive, all modern browser supported</li><li>Easy to use code structure</li><li>Flexible & High-Performance code</li></ul>",
"meta": [
{
"keyword": "Berry Free React Template",
"description": "Download Berry, a free React Material UI admin template.",
"og-title": "Berry Free React Template",
"og-description": "Berry Free React Material UI Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Berry, a free React Material UI admin template.",
"name": "Berry Free React Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/berry-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0",
"priceCurrency": "USD"
}
}
]
},
{
"id": 2,
"create date": "1-8-2024",
"name": "Mantis Free React Dashboard",
"price": 0,
"description": "Free React Material UI Admin Template",
"live-url": "https://mantisdashboard.io/free/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/mantis-free-react.png",
"download-link": "https://codedthemes.com/item/mantis-free-mui-admin-template/",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=codedthemes&repo=mantis-free-react-admin-template&type=star&count=true&size=large",
"categories": "MUI, React",
"technology-stack": ["material-ui", "react", "vite", "js"],
"long-description": "Mantis is a free open-source React Material UI dashboard template crafted for enhanced flexibility and customizability in web development. Whether you're developing a small application or a large enterprise solution it is the best option ever.<br/><br/><b>Features –</b><br/><ul><li>Professional user interface</li><li>Support React18</li><li> Material UI React components</li><li> Responsive</li><li> Browser Supported – chrome, mozilla, safari, opera, edge</li><li> Easy to understand code structure</li></ul>",
"meta": [
{
"keyword": "Mantis Free React Template",
"description": "Download Mantis, a free React Material UI admin template.",
"og-title": "Mantis Free React Template",
"og-description": "Mantis Free React Material UI Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Mantis, a free React Material UI admin template.",
"name": "Mantis Free React Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/mantis-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0",
"priceCurrency": "USD"
}
}
]
},
{
"id": 3,
"create date": "1-8-2024",
"name": "Datta Able Free React Dashboard",
"price": 0,
"description": "Free React Bootstrap Admin Template",
"live-url": "https://lite.codedthemes.com/datta-able/react/default/dashboard/default",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/dattaable-free-react.png",
"download-link": "https://codedthemes.com/item/datta-able-react-free-admin-template/",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=codedthemes&repo=datta-able-free-react-admin-template&type=star&count=true&size=large",
"categories": "React, Bootstrap",
"technology-stack": ["react", "bootstrap", "nodejs", "js"],
"long-description": "Datta Able React Free Admin Template with its modern and responsive design to streamline your workflow. Crafted using React and Bootstrap. It is the perfect choice for beginners looking to create stylish and functional admin dashboards. <br/><br/><b>Features –</b><br/><ul><li>Bootstrap React components</li><li>Highly responsive</li><li> Well maintain code structure</li><li> Flexible</li><li> Modern interface</li></ul>",
"meta": [
{
"keyword": "Datta Able Free React Template",
"description": "Download Datta Able, a free React admin template.",
"og-title": "Datta Able Free React Template",
"og-description": "Datta Able Free React Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Datta Able, a free React admin template.",
"name": "Datta Able Free React Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/dattaable-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0",
"priceCurrency": "USD"
}
}
]
},
{
"id": 4,
"create date": "1-8-2024",
"name": "Gradient Able Free React Dashboard",
"price": 0,
"description": "Free React Bootstrap Admin Template",
"live-url": "https://codedthemes.com/demos/admin-templates/gradient-able/react/free/app/dashboard/analytics",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/gradientable-free-react.png",
"download-link": "https://codedthemes.com/item/gradient-able-reactjs-free-admin-template/",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=codedthemes&repo=gradient-able-free-admin-template&type=star&count=true&size=large",
"categories": "React, Bootstrap",
"technology-stack": ["react", "bootstrap", "nodejs", "js"],
"long-description": "Gradient Able, a free admin dashboard blend with the react and bootstrap to enhance productivity. It offers a responsive layout and ensures optimal performance across all devices. Comes with basic components like buttons, breadcrumbs, typography, collapse, etc.<br/><br/><b>Features –</b><br/><ul><li>Clean code structure</li><li>Bootstrap react components</li><li>Retina responsive ready</li> <li>Easy to customize</li></ul>",
"meta": [
{
"keyword": "Gradient Able Free React Template",
"description": "Download Gradient Able, a free React admin template.",
"og-title": "Gradient Able Free React Template",
"og-description": "Gradient Able Free React Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Gradient Able, a free React admin template.",
"name": "Gradient Able Free React Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/gradientable-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0",
"priceCurrency": "USD"
}
}
]
},
{
"id": 5,
"create date": "5-8-2024",
"name": "Berry React MUI Dashboard",
"price": 69,
"description": "React Material UI Admin Template",
"live-url": "https://mui.com/store/previews/berry-react-material-admin/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/berry-premium-react.png",
"download-link": "https://mui.com/store/items/berry-react-material-admin/",
"githubstar-link": "",
"categories": "MUI, React",
"technology-stack": ["react", "material-ui", "devicon_nextjs", "ts"],
"long-description": "Berry is a highly versatile and modern admin dashboard built with React and Material-UI. The sleek and modern interface view of Berry enhances the user experience. It comes with a variety of pre-built components, widgets, pages, apps, tables, forms, charts, plug-ins, etc., which makes it an ideal choice for developers. The responsive design of Berry ensures seamless functionality across all devices. As well as clean, well-structured codebase facilitates easy development and maintenance. It also supports a User Management app, Chat app, Customer-centric app etc.<br/><br/><b>Features –</b><br/><ul><li>TypeScript support</li><li>Built with React Hooks API</li><li>Redux toolkit</li><li>Next.js with app router</li><li>Modern aesthetics UI design</li><li>Get start with the skeleton version</li><li> 6+ Color presets</li><li>Light / Dark Layouts</li><li>LTR / RTL</li><li>Modern browser support</li><li>Well structure code & folder structure</li><li> SaaS-based interface</li></ul>",
"meta": [
{
"keyword": "Berry React MUI Admin Template",
"description": "Download Berry, a premium React Material UI admin template.",
"og-title": "Berry React MUI Admin Template",
"og-description": "Berry Premium React Material UI Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Berry, a premium React Material UI admin template.",
"name": "Berry React MUI Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/berry-premium-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "69.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 6,
"create date": "5-8-2024",
"name": "Mantis React MUI Dashboard",
"price": 69,
"description": "React Material UI Admin Template",
"live-url": "https://mui.com/store/previews/mantis-react-admin-dashboard-template/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/mantis-premium-ereact.png",
"download-link": "https://mui.com/store/items/mantis-react-admin-dashboard-template/",
"githubstar-link": "",
"categories": "MUI, React",
"technology-stack": ["react", "material-ui", "devicon_nextjs", "ts"],
"long-description": "Mantis React Dashboard is a premium admin template designed for high performance and flexibility. It is built using React and Material UI, which offers a modern and clean design. It includes a variety of UI components, elements, widgets, applications, pages, plugins, forms, tables, maps, and charts to help you quickly set up your project.<br/><br/><b>Features –</b><br/><ul><li>TypeScript support</li><li>Built with React Hooks API</li><li>Support live customizer </li><li>font selection options</li><li> 8+ Color presets</li><li>Animation & color shadows</li><li>LTR / RTL </li><li>Light/dark and Collapse layouts</li><li>Well structure code & folder structure</li><li> SaaS-based interface</li><li> Layout width - Container, Fluid</li></ul>",
"meta": [
{
"keyword": "Mantis React MUI Admin Template",
"description": "Download Mantis, a premium React Material UI admin template.",
"og-title": "Mantis React MUI Admin Template",
"og-description": "Mantis Premium React Material UI Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Mantis, a premium React Material UI admin template.",
"name": "Mantis React MUI Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/mantis-premium-ereact.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "69.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 7,
"create date": "5-8-2024",
"name": "Datta Able React Dashboard",
"price": 35,
"description": "Premium React Bootstrap Admin Template",
"live-url": "https://codedthemes.com/demos/admin-templates/datta-able/react/default/login",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/dattaable-premium-react.png",
"download-link": "https://codedthemes.com/item/datta-able-react-admin-template/",
"githubstar-link": "",
"categories": "React, Bootstrap",
"technology-stack": ["react", "bootstrap", "devicon_nextjs", "js"],
"long-description": "Datta Able is a powerful and flexible admin dashboard, which is not just about managing data but revolutionizing your entire approach to web administration. It is crafted using React and Bootstrap, which offers a variety of pre-built components, widgets, cards, layouts, charts, and pages. Datta Able makes it easy to customize and integrate into any project. Well, its responsive design ensures seamless functionality across all devices. <br/><br/><b>Features –</b><br/><ul><li>Responsive design </li><li>Modular architecture</li><li> Rich UI components</li><li>Advanced customization</li><li>Modular and scalable architecture </li><li>Light/dark and collapse layouts</li><li>Well structure code & folder structure</li><li> Developer-friendly</li><li> Integrated plugins</li></ul> ",
"meta": [
{
"keyword": "Datta Able React Admin Template",
"description": "Download Datta Able, a premium React Bootstrap admin template.",
"og-title": "Datta Able React Admin Template",
"og-description": "Datta Able Premium React Bootstrap Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Datta Able, a premium React Bootstrap admin template.",
"name": "Datta Able React Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/dattaable-premium-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "35.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 8,
"create date": "5-8-2024",
"name": "Gradient Able React Dashboard",
"price": 35,
"description": "Premium React Bootstrap Admin Template",
"live-url": "https://codedthemes.com/demos/admin-templates/gradient-able/react/default/app/dashboard/analytics",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/gradientable-premium-react.png",
"download-link": "https://codedthemes.com/item/gradient-able-reactjs-admin-dashboard/",
"githubstar-link": "",
"categories": "React, Bootstrap",
"technology-stack": ["react", "bootstrap", "devicon_nextjs", "js"],
"long-description": "Gradient Able offers a comprehensive selection of layouts to meet various administrative needs and data management approaches. Whether you're handling CRM, e-commerce, or analytics, there's a layout that fits perfectly. Access a wide range of UI components crafted for efficiency and ease of use. It includes advanced tables, charts, widgets, graphs, and icons to speed up your development process.<br/><br/><b>Features –</b><br/><ul><li>Hooks </li><li>SASS powered</li><li> Fully responsive layout</li><li>Workable application</li><li>Modular and scalable architecture</li><li>React Router</li><li>React Hooks</li><li>Developer-friendly</li><li>Integrated plugins</li></ul>",
"meta": [
{
"keyword": "Gradient Able React Admin Template",
"description": "Download Gradient Able, a premium React Bootstrap admin template.",
"og-title": "Gradient Able React Admin Template",
"og-description": "Gradient Able Premium React Bootstrap Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Gradient Able, a premium React Bootstrap admin template.",
"name": "Gradient Able React Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/gradientable-premium-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "35.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 11,
"create date": "14-10-2024",
"name": "Materially ReactJS Admin Dashboard",
"price": 35,
"description": "React Material UI Admin Template",
"live-url": "https://codedthemes.com/demos/admin-templates/materially/react/default/dashboard/default",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materially-premium-react.png",
"download-link": "https://codedthemes.com/item/materially-reactjs-admin-dashboard/",
"githubstar-link": "",
"categories": "React, MUI",
"technology-stack": ["react"],
"long-description": "Materially is a highly versatile and modern admin dashboard built with React and Material-UI. Its sleek and user-friendly interface enhances the development experience, making it a go-to option for developers. The dashboard comes with a wide range of pre-built components, widgets, pages, apps, charts, forms, and more, making it a comprehensive solution for building responsive web applications. The clean and well-structured codebase simplifies both development and maintenance, ensuring a smooth workflow. <br/><br/><b>Features –</b><br/><ul><li>TypeScript support for type-safe development </li><li>Built with React Hooks API for efficient and modern coding practices</li><li>Integrated with Redux Toolkit for simplified state management</li><li>Material-UI Components for a consistent, modern UI</li><li>Light/Dark Theme Support for customizable user interfaces</li><li>RTL/LTR Layouts for multilingual and international projects</li><li>Modern and responsive design across all devices</li><li>Cross-browser compatibility for seamless performance</li><li>Clean and organized code for easy customization and scalability</li></ul>",
"meta": [
{
"keyword": "Materially ReactJS Admin Template",
"description": "Download Materially, a premium React Material UI admin template",
"og-title": "Materially ReactJS React Admin Template",
"og-description": "Materially Premium React Material UI Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Materially, a premium React Material UI admin template",
"name": "Materially ReactJS Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materially-premium-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "35.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 12,
"create date": "14-10-2024",
"name": "Next React Admin Dashboard",
"price": 35,
"description": "Premium React Bootstrap Admin Template",
"live-url": "https://codedthemes.com/demos/admin-templates/next/react/default/dashboard/analytics",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/next-premium-react.png",
"download-link": "https://codedthemes.com/item/next-react-admin-dashboard/",
"githubstar-link": "",
"categories": "React, Bootstrap",
"technology-stack": ["react", "bootstrap", "js"],
"long-description": "Next React Admin Dashboard is a modern and feature-packed admin template built with React and Material-UI. Designed with developers in mind, it offers a streamlined and intuitive interface that enhances the user experience. Next comes with a variety of pre-built components, widgets, apps, forms, charts, and more, making it a versatile solution for building scalable web applications. Its clean code structure and responsiveness ensure that the dashboard performs seamlessly across all devices.<br/><br/><b>Features –</b><br/><ul><li>TypeScript support for enhanced code quality and maintainability </li><li>Built with the React Hooks API for efficient, modern development practices</li><li>Integrated with Redux Toolkit for seamless state management</li><li>Next.js Integration for optimized performance and routing</li><li>Material-UI Components for a consistent, sleek UI design</li><li>Light/Dark Layout Options to suit different user preferences</li><li>RTL/LTR Support for global accessibility and multilingual projects</li><li>Fully Responsive Design for a seamless experience on all devices</li><li>Cross-Browser Compatibility for flawless operation across platforms</li><li>Clean and well-organized codebase for easy customization and scaling</li></ul>",
"meta": [
{
"keyword": "Next React Admin Template",
"description": "Download Next, a premium React Bootstrap admin template",
"og-title": "Next ReactJS React Admin Template",
"og-description": "Next Premium React Bootstrap Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Next, a premium React Bootstrap admin template",
"name": "Next React Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/next-premium-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "35.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 13,
"create date": "14-10-2024",
"name": "Materially Free Reactjs Admin Dashboard",
"price": 0,
"description": "Free React Admin Template",
"live-url": "https://codedthemes.com/demos/admin-templates/materially/react/free/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materially-free-react.png",
"download-link": "https://codedthemes.com/item/materially-free-reactjs-admin-template/",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=codedthemes&repo=materially-free-react-admin-template&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react"],
"long-description": "Materially Free ReactJS Admin Template is a highly customizable and modern admin dashboard built with React and Material-UI. Offering a sleek and responsive design, Materially provides developers with a powerful set of tools to create dynamic web applications with ease. Its free version includes essential components, pages, and widgets that allow for quick setup and smooth integration into any project. Materially’s lightweight and clean codebase ensures easy development and maintenance.<br/><br/><b>Features –</b><br/><ul><li>Built with React Hooks API for modern and efficient coding </li><li>TypeScript Support for enhanced scalability and type safety</li><li>Integrated with Material-UI components for a consistent and modern UI</li><li>Fully Responsive Design optimized for all devices</li><li>Cross-Browser Compatibility ensuring seamless functionality across platforms</li><li>Clean Code Structure for easy customization and quick development</li><li>Light and Dark Theme Options for adaptable UI design</li><li>Free and Open Source for easy access and flexibility</li></ul>",
"meta": [
{
"keyword": "Materially Free Reactjs Admin Template",
"description": "Download Materially, a free React admin template.",
"og-title": "Materially Free Reactjs Admin Template",
"og-description": "Materially Free React Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Materially, a free React admin template.",
"name": "Materially Free Reactjs Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materially-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0",
"priceCurrency": "USD"
}
}
]
}
]
},
{
"name": "Phoenixcoded",
"description": "",
"seeMoreUrl": "",
"products": [
{
"id": 9,
"create date": "11-8-2024",
"name": "Able Pro Free React Dashboard",
"price": 0,
"description": "Free React Admin Template",
"live-url": "https://ableproadmin.com/react/free/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/ablepro-free-react.png",
"download-link": "https://github.com/phoenixcoded/able-pro-free-admin-dashboard-template",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=phoenixcoded&repo=able-pro-free-admin-dashboard-template&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react"],
"long-description": "Able pro free react admin template, a great starting point for beginners in advanced web applications. The free version offers essential tools for data visualization, simplifying the management and presentation of your data. <br/><br/><b>Features –</b><br/><ul><li>Developer friendly</li><li>Highly responsive</li><li> Clean code structure</li><li> Flexible</li><li> Modern interface</li></ul>",
"meta": [
{
"keyword": "Able Pro Free React Template",
"description": "Download Able Pro, a free React admin template.",
"og-title": "Able Pro Free React Template",
"og-description": "Able Pro free React admin template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Able Pro, a free React admin template.",
"name": "Able Pro Free React Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/ablepro-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0",
"priceCurrency": "USD"
}
}
]
},
{
"id": 26,
"create date": "27-12-2024",
"name": "Light Able Dashboard Template",
"price": 15,
"description": "14 in 1 Admin Template",
"live-url": "https://preview.themeforest.net/item/light-able-admin-dashboard-template/full_screen_preview/51628885?_ga=2.222474648.2033476031.1735285086-1480583188.1710908883",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/lightable-premium-react.png",
"download-link": "https://themeforest.net/item/light-able-admin-dashboard-template/51628885",
"githubstar-link": "",
"categories": "React",
"technology-stack": ["react"],
"long-description": "Light Able is a comprehensive 14-in-1 admin dashboard template designed for modern web applications. It is highly customizable, providing a modern user interface with both light/dark modes and RTL support. This template is built to enhance the developer experience by offering an easy folder structure, well-commented code, and more than 10 color presets to choose from.<br/><br/><b>Features –</b><br/><ul><li>6+ conceptual apps</li><li> Offer a sleek and contemporary look that’s easy to customize.</li><li>Light/Dark and auto modes</li><li>Includes a wide range of components and widgets to create any type of dashboard.</li><li>Pre-built form components and various layout options for a flexible design approach.</li><li>Ready-to-use landing and login pages.</li></ul>",
"meta": [
{
"keyword": "Light Able Dashboard Template",
"description": "Download 14 in 1 Admin Template",
"og-title": "Light Able Dashboard Template",
"og-description": "Able Pro free React admin template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download 14 in 1 Admin Template.",
"name": "Light Able Dashboard Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/lightable-premium-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "15",
"priceCurrency": "USD"
}
}
]
},
{
"id": 10,
"create date": "11-8-2024",
"name": "Able Pro React MUI Dashboard",
"price": 17,
"description": "React Material UI Admin Template",
"live-url": "https://ableproadmin.com/react/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/ablepro-premium-react.png",
"download-link": "https://themeforest.net/item/able-pro-react-mui-admin-dashboard-template/50427053",
"githubstar-link": "",
"categories": "MUI, React",
"technology-stack": ["react", "material-ui", "devicon_nextjs", "nodejs", "ts"],
"long-description": "Able Pro, is a powerful and feature-rich MUI React admin template designed to meet the needs of modern web applications. No matter if you're building an eCommerce site, project management system, crypto admin interface, CRM, & SaaS project, Able Pro has you covered. The responsive design works well on all devices, and the clean codebase ensures easy integration and maintenance. It comes with gulp build tools, SCSS variables for customization, and supports RTL languages.<br/><br/><b>Features –</b><br/><ul><li>npm & yarn package manager </li><li>SASS powered</li><li> Gulp build tools</li><li>Retina Ready and Mobile-first responsive design.</li><li>Modular and scalable architecture </li><li>Full/Container width</li><li>10+ Primary color options</li><li> Code Standard that makes easy developer experience</li></ul>",
"meta": [
{
"keyword": "Able Pro React MUI Admin Template",
"description": "Download Able Pro, a premium React Material UI admin template.",
"og-title": "Able Pro React MUI Admin Template",
"og-description": "Able Pro Premium React Material UI Admin Template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Able Pro, a premium React Material UI admin template.",
"name": "Able Pro React MUI Admin Template",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/ablepro-premium-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "17",
"priceCurrency": "USD"
}
}
]
}
]
},
{
"name": "Creative-Tim",
"description": "",
"seeMoreUrl": "",
"products": [
{
"id": 14,
"create date": "14-10-2024",
"name": "Material Dashboard 2 React",
"price": 0,
"description": "Free React Material UI Admin Template",
"live-url": "https://demos.creative-tim.com/material-dashboard-react/#/dashboard",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialui-free-react.png",
"download-link": "https://www.creative-tim.com/product/material-dashboard-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=material-dashboard-react&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react"],
"long-description": "Material Dashboard 2 React is newest free MUI Admin Template built on React. It’s an ideal choice for developers looking to create a highly customizable, feature-packed, and developer-friendly admin dashboard. Inspired by Google’s Material Design, this dashboard template helps you build stunning websites and web apps to impress your clients. With a clean and modern interface, Material Dashboard 2 React enhances user experience and simplifies development.<br/><br/><b>Features –</b><br/><ul><li>Over 70 fully coded elements, including buttons, inputs, navbars, cards, and alerts </li><li>Built with React Hooks API for modern, efficient development</li><li>MUI styled() API and sx prop for easy customization and color variation</li><li>Prebuilt design blocks for seamless development</li><li>Light/Dark theme support for customizable user interfaces</li><li>Responsive design that works across all devices</li><li>Cross-browser compatibility ensuring smooth performance</li><li>Detailed documentation for developers</li><li>Example pages to jump-start your development and showcase to clients</li></ul>",
"meta": [
{
"keyword": "Material Dashboard 2 React",
"description": "Download Material Dashboard 2, a free React admin template.",
"og-title": "Material Dashboard 2 React",
"og-description": "Material Dashboard 2, free React admin template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Material Dashboard 2, a free React admin template.",
"name": "Material Dashboard 2 React",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialui-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 15,
"create date": "14-10-2024",
"name": "Material Dashboard Material UI v4",
"price": 0,
"description": "Free React Material UI Admin Template",
"live-url": "https://demos.creative-tim.com/material-dashboard-material-ui-v4",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialdashboard-free-react.png",
"download-link": "https://www.creative-tim.com/product/material-dashboard-material-ui-v4",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=material-dashboard-material-ui-v4&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react"],
"long-description": "Material Dashboard Material-UI v4 is a free and beautifully designed admin dashboard inspired by Google’s Material Design. Built using Material-UI v4.1.0, it offers a modern and visually appealing interface that makes the development process seamless. This dashboard template features an intuitive layout that emphasizes clarity and depth, making it easy to navigate and highly functional for web apps.<br/><br/><b>Features –</b><br/><ul><li>Material-UI v4.1.0 framework for sleek animations, transitions, and effects</li><li>5 color filter options for sidebar and card headers (blue, green, orange, red, and purple)</li><li>Background image support for the sidebar for enhanced customization</li><li>Responsive design to ensure seamless performance across devices</li><li>Layered interface mimicking sheets of paper for depth and organization</li><li>Left sidebar navigation with content displayed on the right in the main panel</li><li>Cross-browser compatibility for consistent performance across platforms</li><li>Detailed documentation for developers</li><li>Modern design inspired by Google’s Material Design principles</li></ul></li></ul>",
"meta": [
{
"keyword": "Material Dashboard Material UI v4",
"description": "Download Material UI v4, a free React admin template.",
"og-title": "Material Dashboard Material UI v4",
"og-description": "Material UI v4, free React admin template."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Material UI v4, a free React admin template.",
"name": "Material Dashboard Material UI v4",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialdashboard-free-react.pnge",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 16,
"create date": "28-10-2024",
"name": "Material Kit 2 React",
"price": 0,
"description": "Free ReactJS & MUI Kit",
"live-url": "https://demos.creative-tim.com/material-kit-react/?_ga=2.216374486.1356904668.1730099324-GA1.2.1864488715.1698216368#/presentation",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialkit-free-react.png",
"download-link": "https://www.creative-tim.com/product/material-kit-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=material-kit-react&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react"],
"long-description": "Material Kit 2 React is our latest free MUI Design System based on React. Inspired by Material Design, it provides all the essential components for creating visually stunning and feature-rich websites. If you’re a developer looking for a highly customizable, sleek, and modern design system, Material Kit 2 React is the perfect choice.<br/><br/><b>Features –</b><br/><ul><li>Over 40 fully coded frontend elements such as buttons, inputs, navbars, alerts, and cards</li><li>Built with React Hooks API and MUI styled() API for easy customization</li><li>Components support color variations, customizable with the sx prop</li><li>Pre-built design blocks for seamless development</li><li>Fully responsive design optimized for all devices</li><li>Detailed documentation to guide developers through each component</li><li>Example pages included for quick inspiration and setup</li><li>Cross-browser compatibility for smooth performance across platforms</li></ul>",
"meta": [
{
"keyword": "Material Kit 2 React",
"description": "Download Material Kit 2, a free ReactJS & MUI Kit.",
"og-title": "Material Kit 2 React",
"og-description": "Material Kit 2, free ReactJS & MUI Kit."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Material Kit 2, a free ReactJS & MUI Kit.",
"name": "Material Kit 2 React",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialkit-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 18,
"create date": "28-10-2024",
"name": "Material Kit Material-UI v4",
"price": 0,
"description": "Free Material-UI Kit",
"live-url": "https://demos.creative-tim.com/material-kit-material-ui-v4/#/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialkit2-free-react.png",
"download-link": "https://www.creative-tim.com/product/material-kit-material-ui-v4",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=material-kit-react&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react", "scss"],
"long-description": "Material Kit Material-UI v4 is a free [email protected] kit that brings a fresh, modern design inspired by Google’s Material Design. This kit was built to provide developers with an easy-to-use set of beautiful components that incorporate the material design concepts of light, surface, and movement. If you’re working on a web project and want to make it visually appealing and consistent, Material Kit Material-UI v4 is the ideal choice.<br/><br/><b>Features –</b><br/><ul><li>Three fully-coded example pages to help you kickstart your project</li><li>Material-UI elements restyled for a sleek, modern look</li><li>Color choices, edge-to-edge imagery, and large-scale typography for a visually distinct UI</li><li>Layered interface resembling sheets of paper for clear depth and order</li><li>Left sidebar navigation with actions on the right for easy user interaction</li><li>Fully responsive design that works seamlessly across devices</li><li>Cross-browser compatibility for consistent performance</li><li>Built using Material-UI framework, ensuring smooth animations, transitions, and ripples</li></ul>",
"meta": [
{
"keyword": "Material Kit Material-UI v4",
"description": "Download Material Kit Material-UI v4, a free Material-UI Kit.",
"og-title": "Material Kit Material-UI v4",
"og-description": "Material Kit Material-UI v4, free Material-UI Kit."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Material Kit Material-UI v4, a free Material-UI Kit.",
"name": "Material Kit Material-UI v4",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialkit2-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 19,
"create date": "28-10-2024",
"name": "Purity UI Dashboard",
"price": 0,
"description": "Free React Chakra UI Dashboard",
"live-url": "https://demos.creative-tim.com/purity-ui-dashboard/?_ga=2.189454955.1395838140.1735279264-1811786055.1732350493#/admin/dashboard",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/purityui-free-react.png",
"download-link": "https://www.creative-tim.com/product/purity-ui-dashboard",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=purity-ui-dashboard&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react", "chakra"],
"long-description": "Purity UI Dashboard is a modern and innovative free ReactJS admin dashboard template built with Chakra UI by Creative Tim and Simple. Designed for developers who want a sleek, elegant UI, Purity UI Dashboard offers more than 70 fully coded frontend elements and prebuilt pages like Sign-In and Profile. This template allows developers to customize and manage elements easily, providing the flexibility to modify colors with Chakra's style props.<br/><br/><b>Features –</b><br/><ul><li>Including buttons, inputs, navbars, nav tabs, cards, and alerts, allowing for a wide range of customization.</li><li>Prebuilt design blocks</li><li>Well-detailed and built by developers, providing clarity on using components.</li><li>Example pages are included to help quickly build essential structures for web projects, like landing pages and dashboards.</li></ul>",
"meta": [
{
"keyword": "Purity UI Dashboard",
"description": "Download Purity, a React Chakra UI Dashboard.",
"og-title": "Purity UI Dashboard",
"og-description": "Download Purity, a React Chakra UI Dashboard."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Purity, a React Chakra UI Dashboard.",
"name": "Purity UI Dashboard",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialkit2-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 20,
"create date": "29-10-2024",
"name": "Paper Dashboard React",
"price": 0,
"description": "Free Bootstarp and React Template",
"live-url": "https://demos.creative-tim.com/paper-dashboard-react/?_ga=2.245233477.1356904668.1730099324-GA1.2.1864488715.1698216368#/admin/dashboard",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/paperdashboard-free-react.png",
"download-link": "https://www.creative-tim.com/product/paper-dashboard-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=paper-dashboard-react&type=star&count=true&size=large",
"categories": "React, Bootstrap",
"technology-stack": ["react", "scss", "bootstrap"],
"long-description": "Paper Dashboard React is a free Bootstrap 4 admin template that combines soft colors, beautiful typography, and spacious layouts to provide a clean and user-friendly experience. Designed for developers who want an elegant yet functional interface, Paper Dashboard React offers a perfect blend of minimalism and power. With its gentle color scheme and well-organized elements, this admin panel ensures that users can navigate easily while focusing on key information.<br/><br/><b>Features –</b><br/><ul><li>Bootstrap 4 support</li><li>Includes pre-coded components like buttons, cards, and navbars for a cohesive design. </li><li>Optimized for all devices, from desktops to mobile.</li><li>Pre-built pages for quick setup, including analytics and user settings.</li><li>Offers essential features in a simple, easy-to-navigate design.</li></ul>",
"meta": [
{
"keyword": "Paper Dashboard React",
"description": "Download Paper Dashboard, a free React Bootstrap dashboard.",
"og-title": "Paper Dashboard React",
"og-description": "Paper Dashboard, a free React Bootstrap dashboard."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Paper Dashboard, a free React Bootstrap dashboard.",
"name": "Paper Dashboard React",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/materialkit2-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 21,
"create date": "29-10-2024",
"name": "Argon Dashboard React",
"price": 0,
"description": "Free Bootstarp and Reactstrap Template",
"live-url": "https://demos.creative-tim.com/argon-dashboard-react/?_ga=2.211669973.1356904668.1730099324-GA1.2.1864488715.1698216368#/admin/index",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/argonv4-free-react.png",
"download-link": "https://www.creative-tim.com/product/argon-dashboard-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=argon-dashboard-react&type=star&count=true&size=large",
"categories": "React, Bootstrap",
"technology-stack": ["react", "scss", "bootstrap"],
"long-description": "Argon Dashboard React is a free, open-source dashboard template built with Bootstrap 4, React, and Reactstrap. Designed to be lightweight yet fully functional, this template is ideal for developers looking to create beautiful and responsive dashboards or web applications. With over 100 individual components and pre-built example pages, Argon Dashboard React helps streamline the development process, making it quick and easy to build powerful, visually appealing web projects.<br/><br/><b>Features –</b><br/><ul><li>Fully coded and customizable, allowing easy design variations using SASS.</li><li>Includes example pages to speed up project setup and development.</li><li>Optimized for all screen sizes, ensuring great user experience on any device.</li><li>Components support hover, focus, and active states for dynamic UIs.</li></ul>",
"meta": [
{
"keyword": "Argon Dashboard React",
"description": "Download Argon Dashboard, a free Bootstarp and Reactstrap dashboard.",
"og-title": "Argon Dashboard React",
"og-description": "Argon Dashboard, a free Bootstarp and Reactstrap dashboard."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Argon Dashboard, a free Bootstarp and Reactstrap dashboard.",
"name": "Argon Dashboard React",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/argonv4-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 22,
"create date": "27-12-2024",
"name": "Black React Dashboard",
"price": 0,
"description": "Free Bootstarp and React Admin Template",
"live-url": "https://demos.creative-tim.com/black-dashboard-react/?_ga=2.155292027.1395838140.1735279264-1811786055.1732350493#/admin/dashboard",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/blackdashboard-free-react.png",
"download-link": "https://www.creative-tim.com/product/black-dashboard-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=black-dashboard-react&type=star&count=true&size=large",
"categories": "React, Bootstrap",
"technology-stack": ["react", "scss", "bootstrap"],
"long-description": "Black Dashboard React is a beautiful and modern admin dashboard built using Bootstrap 4 and Reactstrap. Designed to offer a clean and highly functional interface, this template is perfect for managing and visualizing data related to your business. The dashboard is packed with a large number of components, all crafted to fit together seamlessly and look amazing. Black Dashboard React uses a soothing color palette, spacious cards, beautiful typography, and clean graphics, offering a visually appealing and easy-to-use experience. It also comes bundled with all the essential plugins and extensive documentation, making it quick to get started and highly customizable.<br/><br/><b>Features –</b><br/><ul><li>16+ individual components</li><li>Color variations using SASS files for easy customization</li><li>Dark Mode and Light Mode</li><li>Responsive design ensuring seamless performance across devices</li><li>Dark Mode and Light Mode</li><li>Fully documented components and plugins for easy integration</li><li>Optimized for speed, saving time from prototyping to full-functional implementation</li></ul>",
"meta": [
{
"keyword": "Black React Dashboard",
"description": "Download Black Dashboard, a free Bootstarp and React dashboard.",
"og-title": "Black React Dashboard",
"og-description": "Black Dashboard, a free Bootstarp and React dashboard."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Black Dashboard, a free Bootstarp and Reactstrap dashboard.",
"name": "Black Dashboard React",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/blackdashboard-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 23,
"create date": "27-12-2024",
"name": "Light React Bootstrap Dashboard",
"price": 0,
"description": "Free Bootstrap React Admin Template",
"live-url": "https://demos.creative-tim.com/light-bootstrap-dashboard-react/?_ga=2.269088433.1395838140.1735279264-1811786055.1732350493#/admin/dashboard",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/lightbootstrap-free-react.png",
"download-link": "https://www.creative-tim.com/product/light-bootstrap-dashboard-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=light-bootstrap-dashboard-react&type=star&count=true&size=large",
"categories": "React, Bootstrap",
"technology-stack": ["react", "scss", "bootstrap"],
"long-description": "Light Bootstrap Dashboard React is a free and beautifully simple admin dashboard template built on top of Light Bootstrap Dashboard and React JS. Fully responsive, this template comes with a comprehensive set of components and elements that allow you to build a wide range of applications. Whether you're developing admin panels, project management systems, web application backends, CMS, or CRM platforms, Light Bootstrap Dashboard React provides the flexibility to create a solution that fits your needs.<br/><br/><b>Features –</b><br/><ul><li>React JS for modern and efficient development</li><li>A vast collection of fully customizable components and optimized plugins</li><li>6 color filter options for the sidebar</li><li>Fully responsive design, ensuring a seamless experience across all devices</li><li>Designed with simplicity and elegance in mind</li></ul>",
"meta": [
{
"keyword": "Light React Bootstrap Dashboard",
"description": "Download Light Dashboard, a free Bootstarp and React dashboard.",
"og-title": "Light React Dashboard",
"og-description": "Light Dashboard, a free Bootstarp and React dashboard."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Light Dashboard, a free Bootstarp and React dashboard.",
"name": "Light Dashboard React",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/lightbootstrap-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 24,
"create date": "27-12-2024",
"name": "Notus React UI Kit & Admin",
"price": 0,
"description": "Free Tailwind CSS UI Kit and Admin",
"live-url": "https://demos.creative-tim.com/notus-react/?_ga=2.189454955.1395838140.1735279264-1811786055.1732350493#/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/notus-free-react.png",
"download-link": "https://www.creative-tim.com/product/notus-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=notus-react&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react"],
"long-description": "Notus React is a beautifully designed, free Tailwind CSS and React UI Kit that empowers developers to build stunning and responsive web applications with ease. Tailored for modern web development, it comes packed with a rich selection of fully coded components, making it ideal for building websites, dashboards, and complex admin interfaces.<br/><br/><b>Features –</b><br/><ul><li>Tailwind CSS, offering a clean and modern design</li><li>Includes over 100 frontend components</li><li>Seamlessly transition from prototypes to fully functional projects</li><li>Multiple state support</li><li>Tailwind CSS classes, allowing for quick adjustments and styling without the need for complex configurations.</li></ul>",
"meta": [
{
"keyword": "Notus React UI Kit & Admin",
"description": "Download Notus, a free React UI Kit & Admin.",
"og-title": "Notus React UI Kit & Admin",
"og-description": "Download Notus, a free React UI Kit & Admin."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Notus, a free React UI Kit & Admin.",
"name": "Notus React UI Kit & Admin",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/notus-free-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
},
{
"id": 25,
"create date": "27-12-2024",
"name": "Argon Design System",
"price": 0,
"description": "Free Design System For reactstrap",
"live-url": "https://demos.creative-tim.com/argon-design-system-react/?_ga=2.229700316.1395838140.1735279264-1811786055.1732350493#/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/argon-design-system-react.png",
"download-link": "https://www.creative-tim.com/product/argon-design-system-react",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=creativetimofficial&repo=argon-design-system-react&type=star&count=true&size=large",
"categories": "React",
"technology-stack": ["react", "bootstrap", "scss", "figma"],
"long-description": "Argon Design System React is a free, open-source design system built with Bootstrap 4, React, and Reactstrap. It provides developers with a comprehensive set of tools, components, and pre-built design elements that can be easily integrated into any project. Perfect for creating modern, visually appealing web applications, this design system simplifies the process of building user interfaces by offering a robust library of customizable components.<br/><br/><b>Features –</b><br/><ul><li>Fully coded components</li><li>Responsive and interactive elements</li><li>Allow developers to quickly set up the basic structure of a project, providing a clear pathway to creating fully functional web applications.</li><li>The design system features comprehensive documentation that thoroughly explains each component.</li></ul>",
"meta": [
{
"keyword": "Argon Design System",
"description": "Download Argon, a free Design System.",
"og-title": "Argon Design System",
"og-description": "Download Argon, a free Design System."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Argon, a free Design System.",
"name": "Argon Design System",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/argon-design-system-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "0.00",
"priceCurrency": "USD"
}
}
]
}
]
},
{
"name": "Minimal",
"description": "",
"seeMoreUrl": "",
"products": [
{
"id": 27,
"create date": "27-12-2024",
"name": "Minimal React MUI Dashboard",
"price": 69,
"description": "MUI React Admin Template",
"live-url": "https://mui.com/store/previews/minimal-dashboard/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/minimal-premum-react.png",
"download-link": "https://mui.com/store/items/minimal-dashboard/",
"githubstar-link": "",
"categories": "React, MUI",
"technology-stack": ["react", "material-ui", "devicon_nextjs", "ts"],
"long-description": "Minimal Dashboard is a clean and professional Next.js and Vite React admin template built with Material-UI v5. It comes packed with over 70+ pages and 100+ React components, making it a powerful and flexible UI kit to kickstart your next project. Minimal Dashboard blends modern aesthetics with efficient functionality, offering a seamless user experience for developers and end-users alike.<br/><br/><b>Features –</b><br/><ul><li>Next.js v14.x (App Dir version) and Vite support for modern, high-performance development</li><li>Material-UI v5 for a sleek, modern design with customizable components</li><li>100% React Hooks and React Context API for state management</li><li>Light/Dark mode to offer a personalized experience</li><li>Editors, ApexCharts, and SWR Fetching for data visualization and content management</li><li>Dropzone Upload, Image Lazy Loading, and Color Theme Changing for performance optimization</li><li>React Hook Form + Zod for form validation and management</li><li>ESLint & Prettier integration for code quality assurance</li><li>Animated Framer Motion for smooth, interactive UI elements</li></ul>",
"meta": [
{
"keyword": "Minimal React MUI Dashboard",
"description": "Download Minimal, a React MUI Dashboard.",
"og-title": "Minimal React MUI Dashboard",
"og-description": "Download Minimal, a React MUI Dashboard."
}
],
"schema": [
{
"context": "https://schema.org",
"type": "Product",
"description": "Download Minimal, a React MUI Dashboard.",
"name": "Minimal React MUI Dashboard",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/minimal-premum-react.png",
"offers": {
"type": "Offer",
"availability": "https://schema.org/InStock",
"price": "69",
"priceCurrency": "USD"
}
}
]
},
{
"id": 28,
"create date": "27-12-2024",
"name": "Minimal Free React Dashboard",
"price": 0,
"description": "Free React Admin Dashboard made with Material UI",
"live-url": "https://mui.com/store/previews/minimal-dashboard-free/",
"image": "https://cthemes.s3.us-west-2.amazonaws.com/react-templates/minimal-free-react.png",
"download-link": "https://mui.com/store/items/minimal-dashboard-free/",
"githubstar-link": "https://ghbtns.com/github-btn.html?user=minimal-ui-kit&repo=material-kit-react&type=star&count=true&size=large",