-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1071 lines (1067 loc) · 38.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Boilerplates to start you project fast and polished"
/>
<link rel="icon" type="image/png" href="./images/favicon.png" />
<link rel="shortcut icon" href="./images/favicon.png" />
<link rel="apple-touch-icon" href="./images/favicon.png" />
<title>Nestjs Boilerplate | Reactjs Boilerplate | Brocoders</title>
<link rel="stylesheet" href="./css/main.min.css" />
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-NNXV7GKW");
</script>
<meta itemprop="serviceType" content="Software development" />
<link rel="canonical" href="https://bcboilerplates.com/" />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "SoftwareApplication",
"name": "BCBoilerplate",
"description": "Boilerplates to start you project fast and polished",
"url": "https://bcboilerplates.com/",
"provider": {
"@type": "Organization",
"name": "Brocoders"
},
"publisher": {
"@type": "Organization",
"name": "Brocoders"
},
"applicationSuite": ["React", "Next.js", "Nest JS"],
"featureList": [
"Public and private routing",
"Social Login",
"Sign in and sign up via email",
"Internationalization",
"Admin Panel with user management",
"Github Actions",
"File uploads"
],
"screenshot": [
"https://bcboilerplates.com/images/SignIn.png",
"https://bcboilerplates.com/images/SignUp.png",
"https://bcboilerplates.com/images/Users.png",
"https://bcboilerplates.com/images/CreateUser.png"
],
"softwareRequirements": ["node", "react"],
"installUrl": [
"https://github.com/new?template_name=extensive-react-boilerplate&template_owner=brocoders",
"https://github.com/new?template_name=nestjs-boilerplate&template_owner=brocoders"
],
"creator": [
{
"@type": "Person",
"name": "Vlad Shchepotin",
"jobTitle": "Lead developer",
"image": "https://bcboilerplates.com/images/Vlad.png"
},
{
"@type": "Person",
"name": "Sergei Lomako",
"jobTitle": "Backend developer",
"image": "https://bcboilerplates.com/images/Sergei.png"
},
{
"@type": "Person",
"name": "Olena Vlasenko",
"jobTitle": "Frontend developer",
"image": "https://bcboilerplates.com/images/Olena.png"
},
{
"@type": "Person",
"name": "Tetiana Fomina",
"jobTitle": "QA and TA",
"image": "https://bcboilerplates.com/images/Tanya.png"
},
{
"@type": "Person",
"name": "Liudmyla Kostenko",
"jobTitle": "Frontend developer",
"image": "https://bcboilerplates.com/images/Luda.png"
},
{
"@type": "Person",
"name": "Rodion Salnik",
"jobTitle": "Promotion & bussines",
"image": "https://bcboilerplates.com/images/Rodion.png"
},
"keywords": "extensive-react-boilerplate, extensive react, extensive react boilerplate, react-boilerplate, react boilerplate, react starter kit, react, next-boilerplate, nestJS, web development, nest-boilerplate, nestjs-boilerplate, nestjs boilerplate",
]
}
</script>
</head>
<body>
<noscript>
<iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-NNXV7GKW"
height="0"
width="0"
style="display: none; visibility: hidden"
>
</iframe>
</noscript>
<header class="container header-container">
<a href="./index.html" class="logo-header">
<svg width="26" height="36" aria-label="site logo">
<use href="./images/sprite.svg#BroLogo"></use>
</svg>
<span class="name">BC Boilerplates</span>
</a>
<button
type="button"
class="menu__btn"
aria-expanded="false"
aria-controls="menu-container"
data-menu-button
>
<svg width="24" height="16" aria-label="Mobile menu switcher">
<use
class="menu__close-icon"
href="./images/sprite.svg#close_nav"
></use>
<use
class="menu__open-icon"
href="./images/sprite.svg#menu_nav"
></use>
</svg>
</button>
<nav class="menu" id="menu-container" data-menu>
<ul class="site-nav">
<li class="site-nav__item">
<a href="#features" class="site-nav__link" id="GA_menu_features"
>Features</a
>
</li>
<li class="site-nav__item">
<a href="#showcase" class="site-nav__link" id="GA_menu_showcase">
Showcase
</a>
</li>
<li class="site-nav__item">
<a href="#articles" class="site-nav__link" id="GA_menu_articles">
Articles
</a>
</li>
<li class="site-nav__item">
<a href="#team" class="site-nav__link" id="GA_menu_team">Team</a>
</li>
<li class="site-nav__item">
<a
href="#contacts"
class="site-nav__link"
id="GA_menu_get_in_touch"
>
Get in touch
</a>
</li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-container">
<h1 class="hero-title">
Start your project fast and polished with BC Boilerplates
</h1>
<p class="hero-text">
BC Boilerplates simplify starting your frontend and backend
projects. They include essential features and best practices, saving
time on tasks like authentication, registration, and translations.
Clone our repositories and benefit from our starter kits trusted by
hundreds of developers.
</p>
<a
href="https://react-boilerplate-coral.vercel.app/en"
class="hero-btn"
target="_blank"
>Demo website</a
>
</div>
</section>
<section>
<ul class="feature-list">
<li class="feature">
<svg
width="80"
height="80"
class="feature-icon"
aria-label="Full Stack icon"
>
<use href="./images/sprite.svg#rectangle_1"></use>
</svg>
<h2 class="feature-title">Full Stack yet Independent</h2>
<p class="feature-text">
Use frontend and backend boilerplates together to create
full-stack web apps, or use them separately and enjoy flexibility.
</p>
</li>
<li class="feature">
<svg
width="80"
height="80"
class="feature-icon"
aria-label="SSR icon"
>
<use href="./images/sprite.svg#rectangle_2"></use>
</svg>
<h2 class="feature-title">Best Practices and SSR</h2>
<p class="feature-text">
Start your project with built-in best practices, server-side
rendering, enhanced performance and SEO-friendliness.
</p>
</li>
<li class="feature">
<svg
width="80"
height="80"
class="feature-icon"
aria-label="Internationalization icon"
>
<use href="./images/sprite.svg#rectangle_3"></use>
</svg>
<h2 class="feature-title">Internationalization</h2>
<p class="feature-text">
Build your app with an eye on internationalization and translate
the app to different langiages easily.
</p>
</li>
</ul>
<ul class="comparison">
<li class="frontend">
<svg width="81" height="40" aria-label="">
<use href="./images/sprite.svg#frontend"></use>
</svg>
<h2 class="comparison-title">Extensive React Boilerplate</h2>
<p class="comparison-text">
Extentensive React Boilerplate is based on React and Next.js, that
allows to build performant web apps with server-side rendering
support
</p>
<div class="git-stars">
<svg width="20" height="20" aria-label="">
<use href="./images/sprite.svg#star"></use>
</svg>
<span class="git-text" data-frontend-stars>120 on GitHub</span>
<svg width="24" height="24" aria-label="">
<use href="./images/sprite.svg#github"></use>
</svg>
</div>
<ul class="comparison-list">
<li class="comparison-item">
<span> Public and private routing (+roles)</span>
+ Saving 16 hrs
</li>
<li class="comparison-item">
<span>Internationalization </span> + Saving 10 hrs
</li>
<li class="comparison-item">
<span>Material UI. Supports dark mode</span> + Saving 10 hrs
</li>
<li class="comparison-item">
<span
>UI Kit components - forms (React Hook Form is used), modal,
bars, loader</span
>
+ Saving 10 hrs
</li>
<li class="comparison-item">
<span>
Auth (Sign in, Sign up, Reset password, Confirm email, Refresh
Token, Logout)
</span>
+ Saving 40 hrs
</li>
<li class="comparison-item">
<span> Social Login (sign up via Google, and Facebook) </span>
+ Saving 20 hrs
</li>
<li class="comparison-item">
<span> Admin Panel with user management (CRUD)</span> + Saving
40 hrs
</li>
<li class="comparison-item">
<span>View and edit user profile</span> + Saving 12 hrs
</li>
<li class="comparison-item">
<span>File Upload (and avatar upload)</span> + Saving 8 hrs
</li>
<li class="comparison-item">
<span>E2E (end-to-end) tests with Cypress </span> + Saving 20
hrs
</li>
<li class="comparison-item">
<span>ESLint, Prettier, and Husky </span> + Saving 2 hrs
</li>
<li class="comparison-item">
<span>CI (GitHub Actions) </span> + Saving 5 hrs
</li>
</ul>
<div class="comparison-footer">
<p class="total">Total <span> 193 hrs saving</span></p>
<div class="comparison-buttons">
<a
href="https://github.com/brocoders/extensive-react-boilerplate"
class="btn-black"
target="_blank"
>Github Repo</a
>
<a
href="https://github.com/new?template_name=extensive-react-boilerplate&template_owner=brocoders"
class="btn-white"
target="_blank"
>Use Template</a
>
</div>
</div>
</li>
<li class="backend">
<svg width="72" height="40" aria-label="">
<use href="./images/sprite.svg#backend"></use>
</svg>
<h2 class="comparison-title">Nest.js Boilerplate</h2>
<p class="comparison-text">
RESTfull API Boilerplate is based on Nest.js and implements basic
features and best practices on the backend.
</p>
<div class="git-stars">
<svg width="20" height="20" aria-label="">
<use href="./images/sprite.svg#star"></use>
</svg>
<span class="git-text" data-backend-stars></span>
<svg width="24" height="24" aria-label="">
<use href="./images/sprite.svg#github"></use>
</svg>
</div>
<ul class="comparison-list">
<li class="comparison-item">
<span>Database (PostgreSQL, TypeORM)</span> + Saving 2 hrs
</li>
<li class="comparison-item">
<span>Seeds (test data)</span> + Saving 8 hrs
</li>
<li class="comparison-item">
<span>Config Service (@nestjs/config).</span> + Saving 5 hrs
</li>
<li class="comparison-item">
<span>Mailing (nodemailer, u/nestjs-modules/mailer)</span>
+ Saving 7 hrs
</li>
<li class="comparison-item">
<span>Sign in and sign up via email</span> + Saving 16 hrs
</li>
<li class="comparison-item">
<span>Forgot password</span> + Saving 6 hrs
</li>
<li class="comparison-item">
<span> Social sign in (Apple, Facebook, Google, Twitter)</span>
+ Saving 8 hrs
</li>
<li class="comparison-item">
<span>Admin and User roles</span> + Saving 2 hrs
</li>
<li class="comparison-item">
<span>Serialization</span> + Saving 5 hrs
</li>
<li class="comparison-item">
<span>Translations I18N (nestjs-i18n)</span> + Saving 5 hrs
</li>
<li class="comparison-item">
<span>File uploads. Support local and Amazon S3 drivers</span> +
Saving 8 hrs
</li>
<li class="comparison-item">
<span>Swagger for API documentation</span> + Saving 6 hrs
</li>
<li class="comparison-item">
<span>E2E and units tests</span> + Saving 8 hrs
</li>
<li class="comparison-item">
<span>Docker</span> + Saving 8 hrs
</li>
<li class="comparison-item">
<span>CI (Github Actions)</span> + Saving 10 hrs
</li>
<li class="comparison-item">
<span>Documentation </span> + Saving 8 hrs
</li>
<li class="comparison-item">
<span>Migrations </span> + Saving 10 hrs
</li>
<li class="comparison-item">
<span> Auto updating dependencies </span> + Saving 4 hrs
</li>
</ul>
<div class="comparison-footer">
<p class="total">Total <span>126 hrs saving</span></p>
<div class="comparison-buttons">
<a
href="https://github.com/brocoders/nestjs-boilerplate"
class="btn-black"
target="_blank"
>Github Repo</a
>
<a
href="https://github.com/new?template_name=nestjs-boilerplate&template_owner=brocoders"
class="btn-white"
target="_blank"
>Use Template</a
>
</div>
</div>
</li>
</ul>
</section>
<section class="form-section">
<h2 class="form-title">Request the estimation for your project</h2>
<div class="form-container">
<script
charset="utf-8"
type="text/javascript"
src="//js.hsforms.net/forms/embed/v2.js"
></script>
<script>
hbspt.forms.create({
region: "na1",
portalId: "7227761",
formId: "da33e91f-fa42-4232-b67e-540c4f76d4d9",
onBeforeFormSubmit: () => {
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
event: "formSubmission",
formType: "Request the estimation",
});
},
});
</script>
</div>
</section>
<section id="features">
<div class="demo-header">
<h2 class="demo-title">Product Features and Demo</h2>
<a
href="https://react-boilerplate-coral.vercel.app/en"
class="hero-btn"
target="_blank"
>
Demo website
</a>
<p class="demo-basic">
From the user's viewpoint, our boilerplates offer basic features: a
homepage, sign-in, sign-up, and forgot password pages, as well as
user profile and profile editing capabilities. Admin panel is also
included. Plus, all functionalities are easily customizable and
extendable.
</p>
</div>
<ul class="demo-list">
<li class="demo-item">
<p class="demo-text">
The Sign In page enables login via email and password, or through
social login options such as Google or Facebook.
</p>
<picture>
<source
srcset="./images/SignIn.webp 1x, ./images/[email protected] 2x"
type="image/webp"
/>
<source
srcset="./images/SignIn.png 1x, ./images/[email protected] 2x"
type="image/png"
/>
<img
src="./images/SignIn.png"
loading="lazy"
alt="screenshot of Sign In page"
class="demo-img"
/>
</picture>
</li>
<li class="demo-item">
<p class="demo-text">
The standard Sign Up page collects first and last name, email, and
password for registration. Users can also opt for faster
registration by utilizing Google or Facebook to provide their
data. Furthermore, adding more fields to the Sign Up page for
additional information is simple.
</p>
<picture>
<source
srcset="./images/SignUp.webp 1x, ./images/[email protected] 2x"
type="image/webp"
/>
<source
srcset="./images/SignUp.png 1x, ./images/[email protected] 2x"
type="image/png"
/>
<img
class="demo-img"
src="./images/SignUp.png"
loading="lazy"
alt="screenshot of Sign Up page"
/>
</picture>
</li>
<li class="demo-item">
<p class="demo-text">
The Admin Panel features user management capabilities. Users
assigned with an admin role can view, edit, and delete users from
the list, and also have the option to manually create new users.
</p>
<picture>
<source
srcset="./images/Users.webp 1x, ./images/[email protected] 2x"
type="image/webp"
/>
<source
srcset="./images/Users.png 1x, ./images/[email protected] 2x"
type="image/png"
/>
<img
class="demo-img"
src="./images/Users.png"
loading="lazy"
alt="screenshot of Users page"
/>
</picture>
</li>
<li class="demo-item">
<p class="demo-text">
Users can also view and edit their own profiles, including the
ability to add or change their avatar.
</p>
<picture>
<source
srcset="
./images/CreateUser.webp 1x,
./images/[email protected] 2x
"
type="image/webp"
/>
<source
srcset="
./images/CreateUser.png 1x,
./images/[email protected] 2x
"
type="image/png"
/>
<img
class="demo-img"
src="./images/CreateUser.png"
loading="lazy"
alt="screenshot of Create User page"
/>
</picture>
</li>
</ul>
</section>
<section id="showcase" class="container">
<div class="showcase-stars">
<div class="showcase-description">
<h2 class="showcase-title">Showcase</h2>
<p class="showcase-text">
Boilerplates are production-ready and proven by many use cases. If
you want to list your website here, please
<a href="#contacts" id="GA_showcase_contacts">
get in touch with us</a
>.
</p>
<div class="dev-number-box">
<div class="dev-number-upper">
<p class="dev-number">> 500</p>
<p class="developers">developers</p>
</div>
<p class="dev-number-text">
clone these boilerplates per months to start their new project!
</p>
</div>
</div>
<picture class="showcase-image">
<source
media="(prefers-color-scheme: dark)"
srcset="
https://api.star-history.com/svg?repos=brocoders/nestjs-boilerplate
&type=Date&theme=dark
"
/>
<source
media="(prefers-color-scheme: light)"
srcset="
https://api.star-history.com/svg?repos=brocoders/nestjs-boilerplate
&type=Date
"
/>
<img
alt="Star History Chart"
src="https://api.star-history.com/svg?repos=brocoders/nestjs-boilerplate&type=Date"
loading="lazy"
/>
</picture>
</div>
<ul class="cases-list">
<li class="case-item">
<svg width="238" height="40" aria-label="" class="case-logo">
<use href="./images/sprite.svg#BudgetMentorLogo"></use>
</svg>
<h2 class="case-title">Budget Mentor</h2>
<p class="case-text">
A web application for US university professors to help prepare
National Science Foundation research budgets, allocate funds, and
track key performance indicators according to the National Science
Foundation.
</p>
<a
href="https://app.budget-mentor.com/"
class="case-link"
target="_blank"
>app.budget-mentor.com</a
>
</li>
<li class="case-item">
<svg width="187" height="53" aria-label="" class="case-logo">
<use href="./images/sprite.svg#CloudMentorLogo"></use>
</svg>
<h2 class="case-title">Cloud Mentor</h2>
<p class="case-text">
The Develop in Swift guides are flexible enough to help you
support students brand new to coding and those with advanced
skills. The lessons provide practical experience developing apps
with Swift in Xcode, the integrated development environment
professional developers use to build real apps.
</p>
</li>
<li class="case-item">
<svg width="200" height="60" aria-label="" class="case-logo">
<use href="./images/sprite.svg#historian"></use>
</svg>
<h2 class="case-title">Historian</h2>
<p class="case-text">
A comprehensive data management platform designed to capture
real-time data from both analog and digital controllers. Utilizing
intuitive visualization tools such as column charts, line charts,
table views, and status boards, it provides users with insightful
analytics at a glance. Additionally, the platform includes robust
device management capabilities, allowing seamless integration and
control of connected devices for streamlined operations and data
collection.
</p>
</li>
</ul>
</section>
<section id="articles" class="container">
<p class="articles-title">Recent articles</p>
<a href="https://dev.to/rodik/" class="btn-black" target="_blank"
>Subscribe</a
>
<ul class="articles-list">
<li class="article-item">
<a
class="article-link"
href="https://dev.to/rodik/top-12-battle-tested-react-boilerplates-for-2024-f6i"
target="_blank"
>
Top 12+ Battle-Tested React Boilerplates for 2024
</a>
<a
class="article-source"
href="https://dev.to/rodik/fast-project-start-with-nestjs-boilerplate-3992"
target="_blank"
>
on dev.to
</a>
<svg width="20" height="20" aria-label="link to dev_to">
<use href="./images/sprite.svg#dev_to"></use>
</svg>
</li>
<li class="article-item">
<a
class="article-link"
target="_blank"
href="https://medium.com/front-end-weekly/mongodb-support-for-nestjs-boilerplate-with-hexagonal-architecture-2318e1ac3da5"
>
MongoDB support for NestJS Boilerplate with hexagonal architecture
</a>
<a
class="article-source"
target="_blank"
href="https://medium.com/front-end-weekly/mongodb-support-for-nestjs-boilerplate-with-hexagonal-architecture-2318e1ac3da5"
>
in Frontend Weekly</a
>
<img
src="./images/fw.png"
alt="Frontend Weekly logo"
width="20"
height="20"
class="fw-img"
/>
</li>
<li class="article-item">
<a
class="article-link"
target="_blank"
href="https://hackernoon.com/streamline-nestjs-setup-with-extensive-react-boilerplate"
>
Streamline NestJS Setup with Extensive React Boilerplate
</a>
<a
class="article-source"
target="_blank"
href="https://hackernoon.com/streamline-nestjs-setup-with-extensive-react-boilerplate"
>
on Hackernoon
</a>
<svg width="16" height="20" aria-label="">
<use href="./images/sprite.svg#hackernoon"></use>
</svg>
</li>
<li class="article-item">
<a
class="article-link"
href="https://dev.to/rodik/fast-project-start-with-nestjs-boilerplate-3992"
target="_blank"
>
Fast Project Start with NestJS Boilerplate
</a>
<a
class="article-source"
href="https://dev.to/rodik/fast-project-start-with-nestjs-boilerplate-3992"
target="_blank"
>
on dev.to
</a>
<svg width="20" height="20" aria-label="link to dev_to">
<use href="./images/sprite.svg#dev_to"></use>
</svg>
</li>
<li class="article-item">
<a
class="article-link"
target="_blank"
href="https://javascript.plainenglish.io/top-5-nestjs-boilerplates-to-start-a-new-project-faster-a2a2270ea600"
>
Top 5 NestJS Boilerplates to start a new project faster
</a>
<a
class="article-source"
target="_blank"
href="https://javascript.plainenglish.io/top-5-nestjs-boilerplates-to-start-a-new-project-faster-a2a2270ea600"
>
on Medium</a
>
<svg width="20" height="20" aria-label="">
<use href="./images/sprite.svg#medium"></use>
</svg>
</li>
</ul>
</section>
<section id="team" class="container">
<h2 class="team-title">Team</h2>
<div class="team-description">
<p class="team-text">
The boilerplates are designed and supported by the Brocoders
team.<br />Feel free to
<a href="#contacts" id="GA_team_contacts">
reach out to our company
</a>
for assistance or inquiries.
</p>
<svg width="234" height="58" class="bro-logo">
<use href="./images/sprite.svg#bro-with-name"></use>
</svg>
</div>
<ul class="contributors-list">
<li class="contributor-item">
<picture>
<source
srcset="
./images/Vlad.webp 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/webp"
/>
<source
srcset="
./images/Vlad.png 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/png"
/>
<img
src="./images/Vlad.png"
alt="Vlad's picture"
loading="lazy"
class="contributor-image"
/>
</picture>
<p class="contributor-name">Vlad Shchepotin</p>
<p class="position">Lead developer</p>
</li>
<li class="contributor-item">
<picture>
<source
srcset="
./images/Sergei.webp 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/webp"
/>
<source
srcset="
./images/Sergei.png 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/png"
/>
<img
src="./images/Sergei.png"
alt="Sergei's picture"
loading="lazy"
class="contributor-image"
/>
</picture>
<p class="contributor-name">Sergei Lomako</p>
<p class="position">Backend developer</p>
</li>
<li class="contributor-item">
<picture>
<source
srcset="
./images/Olena.webp 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/webp"
/>
<source
srcset="
./images/Olena.png 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/png"
/>
<img
src="./images/Olena.png"
alt="Olena's picture"
loading="lazy"
class="contributor-image"
/>
</picture>
<p class="contributor-name">Olena Vlasenko</p>
<p class="position">Frontend developer</p>
</li>
<li class="contributor-item">
<picture>
<source
srcset="
./images/Tanya.webp 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/webp"
/>
<source
srcset="
./images/Tanya.png 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/png"
/>
<img
src="./images/Tanya.png"
alt="Tetiana's picture"
loading="lazy"
class="contributor-image"
/>
</picture>
<p class="contributor-name">Tetiana Fomina</p>
<p class="position">QA and TA</p>
</li>
<li class="contributor-item">
<picture>
<source
srcset="
./images/Luda.webp 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/webp"
/>
<source
srcset="
./images/Luda.png 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/png"
/>
<img
src="./images/Luda.png"
alt="Liudmyla's picture"
loading="lazy"
class="contributor-image"
/>
</picture>
<p class="contributor-name">Liudmyla Kostenko</p>
<p class="position">Frontend developer</p>
</li>
<li class="contributor-item">
<picture>
<source
srcset="
./images/Rodion.webp 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/webp"
/>
<source
srcset="
./images/Rodion.png 1x,
./images/[email protected] 2x,
./images/[email protected] 3x
"
type="image/png"
/>
<img
src="./images/Rodion.png"
alt="Rodion's picture"
loading="lazy"
class="contributor-image"
/>
</picture>
<p class="contributor-name">Rodion Salnik</p>
<p class="position">Promotion & bussines</p>
</li>
</ul>
</section>
<section id="contacts" class="container">
<h2 class="contacts-title">Get in touch with us!</h2>
<p class="contacts-text">
If you seek consulting, support, or wish to collaborate, please
contact us via email. For any inquiries regarding boilerplates, feel
free to ask on Discord or GitHub Discussions.
</p>
<ul class="contacts-list">
<li class="contacts-item">
<a href="mailto:[email protected]">
<svg width="20" height="14">
<use href="./images/sprite.svg#message"></use>
</svg>
</a>
</li>
<li class="contacts-item">
<a
href="https://discord.com/channels/520622812742811698/1197293125434093701"
target="_blank"
>
<svg width="21" height="16">
<use href="./images/sprite.svg#discord-light"></use>
</svg>
Our Discord channel</a
>
</li>
<li class="contacts-item">
<p class="git-contacts">
<span>
<svg width="24" height="24">
<use href="./images/sprite.svg#github_white"></use>
</svg>
Github Discussions:
</span>
<a
href="https://github.com/brocoders/extensive-react-boilerplate/discussions"
target="_blank"
>
Frontend