forked from ianshulx/React-projects-for-beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
745 lines (692 loc) · 28.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React Projects for beginners</title>
<!-- ICON || FAVICON -->
<link rel="shortcut icon" type="image/png" href="/rp.png" />
<!-- FOR IE -->
<link rel="apple-touch-icon" type="image/png" href="/rp.png" />
<!-- FOR iPhone -->
<link rel="icon" type="image/png" href="/rp.png" />
<!-- FOR Browser Chrome, Opera, etc -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<style>
/* Additional custom styling for the box */
.custom-box {
background-color: #f0f0f0;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
/* Aesthetic background */
body {
background: linear-gradient(to bottom, #7117ea, #ea6060, #9544ff);
color: white;
}
.navbar {
background-color: rgba(0, 0, 0, 0.7);
}
nav {
background-color: rgba(0, 0, 0, 0.408);
color: rgba(255, 255, 255, 0.399);
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
margin-right: 10px; /* Add spacing between the logo and text */
}
.github-icon img {
cursor: pointer; /* Add a pointer cursor to the GitHub icon */
}
/* Styling for the section with background image */
.hero-section {
background-image: url("your-background-image.jpg"); /* Add your image URL here */
background-size: cover;
background-position: center;
padding: 30px 0;
text-align: center;
color: white;
}
.hero-text {
font-size: 2rem;
margin-bottom: 20px;
}
/* Styling for the list of projects */
.projects-list {
background-color: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 10px;
margin-top: 20px;
}
/* Styling for project items */
.project-item {
margin-bottom: 20px;
background-color: rgba(255, 255, 255, 0.2);
padding: 10px;
border-radius: 5px;
transition: background-color 0.3s;
}
.project-item:hover {
background-color: rgba(255, 255, 255, 0.3);
}
#contributors-box {
background-color: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 10px;
width: 80%;
margin: 0 auto;
}
#contributors-list {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
#contributors-list li {
background-color: rgba(255, 255, 255, 0.2);
padding: 10px;
border-radius: 5px;
width: 150px; /* Reduced the width */
text-align: center;
}
#contributors-list li a {
text-decoration: none;
color: white;
}
#contributors-list li img {
border-radius: 50%;
}
</style>
</head>
<body>
<!-- Navbar start -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<!-- Logo and Brand -->
<a class="navbar-brand" href="https://react.dev/" target="_blank">
<img src="./logo.png" height="30" alt="Logo" />
<a
class="navbar-brand"
href="https://github.com/ianshulx/React-projects-for-beginners"
target="_blank"
>
React Projects for beginners</a
>
</a>
<!-- Navbar toggler button for mobile -->
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<!-- Additional Links -->
<!-- Repository Link -->
<li class="nav-item">
<a
class="nav-link"
href="https://github.com/ianshulx/React-projects-for-beginners"
target="_blank"
><i class="bi bi-github"></i
></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section with Background Image -->
<section class="hero-section">
<div class="container">
<h1 class="hero-text">HacktoberFest - React Projects for Beginners</h1>
<p>
Welcome to a collection of beginner-friendly React projects for
HacktoberFest. Start your coding journey with these exciting projects.
</p>
</div>
</section>
<section class="text-center" style="padding: 40px 0">
<a
class="btn btn-warning ml-2"
href="https://github.com/ianshulx/React-projects-for-beginners"
target="_blank"
>
<i class="bi bi-star-fill"></i> Star this repository
</a>
</section>
<section class="text-center">
<div>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/stargazers"
>
<img
src="https://img.shields.io/github/stars/ianshulx/React-projects-for-beginners?style=flat-square"
alt="GitHub stars"
/>
</a>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/network"
>
<img
src="https://img.shields.io/github/forks/ianshulx/React-projects-for-beginners?style=flat-square"
alt="GitHub forks"
/>
</a>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/graphs/contributors"
>
<img
src="https://img.shields.io/github/contributors/ianshulx/React-projects-for-beginners?style=flat-square"
alt="GitHub contributors"
/>
</a>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/issues"
>
<img
src="https://img.shields.io/github/issues/ianshulx/React-projects-for-beginners?style=flat-square"
alt="GitHub issues"
/>
</a>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/pulls"
>
<img
src="https://img.shields.io/github/issues-pr/ianshulx/React-projects-for-beginners?style=flat-square"
alt="GitHub pull requests"
/>
</a>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/watchers"
>
<img
src="https://img.shields.io/github/watchers/ianshulx/React-projects-for-beginners?style=flat-square"
alt="GitHub watchers"
/>
</a>
</div>
</section>
<section>
<div class="container mt-5">
<div class="row">
<div class="col-md-6 mx-auto">
<div class="custom-box projects-list">
<h2>Projects List</h2>
<div class="container mt-4">
<ul class="list-group">
<!-- Project 1 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">1. React todo app</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/react-todo-app"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Start your coding journey with a beginner-friendly React
Todo App, perfect for learning task management and basic
web development
</p>
</li>
<!-- Project 2 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">2. React Weather app</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/React-Weather-app"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Explore weather effortlessly with a beginner-friendly
React Weather App, providing real-time forecasts and an
intuitive user experience..
</p>
</li>
<!-- Project 3 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">3. React Stopwatch app</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/react-stopwatch"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Solidify your javascript concepts by making a React
Stopwatch. You will learn how to manage javascript objects
as state in React.
</p>
</li>
<!-- Project 4 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">4. React Bank UI</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/React-Bank-UI"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Create an attractive landing page of your choice that will
improve your designing skills.
</p>
</li>
<!-- Project 5 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">5. Movie Database App</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/simple-movie-search-app"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Create a simple movie database app where you can search
about movies. In this project you will learn about Card
Components & how to manage dynamic data on page.
</p>
</li>
<!-- Project 6 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">6. React Expense Tracker</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/expense-tracker-react"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Learn more about state management by creating an Expense
Tracker.
</p>
</li>
<!-- Project 7 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">7. E-commerce Website React</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/E-commerce%20Website"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
React-based e-commerce site: Sleek design, vast product
range, and secure checkout redefine online shopping.
</p>
</li>
<!-- Project 8 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">8. GIF generator</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/GIF%20Generator"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Experience the fun of GIF creation with our React-based
GIF Generator. Easily create, customize, and share
animated GIFs, adding excitement to your online
conversations.
</p>
</li>
<!-- Project 9 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">9. Calculator App</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/calculator-react"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
"Experience the power of React with our intuitive
Calculator app. Perform quick and accurate calculations
with a sleek and user-friendly interface.
</p>
</li>
<!-- Project 10 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">10. Meme App</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/meme-app-react"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Unleash your creativity with our React-powered Meme App.
Craft and share hilarious memes effortlessly, adding humor
to your social media..
</p>
</li>
<!-- Project 11 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">11. React Music App</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/react-music-player"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Immerse yourself in the world of music with our
React-based Music Player. Enjoy seamless playback,
playlist management, and a dynamic audio experience.
</p>
</li>
<!-- Project 12 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">12. Quote Generator</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/quotesgenerator"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
"Get inspired with our React-based Quote Generator.
Discover wisdom, motivation, and creativity at your
fingertips, one quote at a time."
</p>
</li>
<!-- Project 13 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">13. Password Generator</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/react_password_generator"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
"Boost your online security with our React Password
Generator. Create strong, randomized passwords
effortlessly to safeguard your digital life."
</p>
</li>
<!-- Project 14 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">14. Score Game</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/React-Score"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
"ScoreKeeper app is applicable to any points-based game.
It helps in accurately managing and keeping track of the
score board, and displays the winner as well."
</p>
</li>
<!-- Project 15-->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">15. Riot game clone UI</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/Riot-Games-Landing-Page-Clone"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
"Riot Games Clone: A React project replicating the essence
of Riot Games' popular gaming platform, offering a diverse
gaming experience."
</p>
</li>
<!-- Project 16-->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">16. Stock Dashboard</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/Stock_Dashboard"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
"This projects gives the stock results for the unique
company details and uses charts to display their
historical and future predictions."
</p>
</li>
<!-- Project 17-->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">17. QR Generator</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/QR_Generator"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
"A dynamic QR Code Generator that generator new QR for
every input text or URL."
</p>
</li>
<!-- Project 18 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">18. Color Palette Generator</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/Color-Palette-Generator"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
A beautiful Color Palette Generator that generates the
harmonious color schemes with a click and easily copy hex
codes. A useful tool for designers and developers.
</p>
</li>
<!-- Project 19 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">19. Blob Generator</h5>
<a
href="https://github.com/ojasggg/React-projects-for-beginners/tree/main/Blob_Generator"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Simple Application useful for creators and designers who
require unique Blob CSS code.
</p>
</li>
<!-- Project 20 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">20. Sorting Algorithm Visualizer</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/soritng_algorithm_visualizer"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
This application has most of the sorting algorithm used in
DSA and has visual representation of how these sorting
algorithm works in background using clean UI in react.
</p>
</li>
<!-- Project 21 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">21. Web3 Theme Landing Page</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/web3_landing_page"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Landing Page for Web3 applications. Used TailwindCSS for
design and aos for minor animations.
</p>
</li>
<!-- Project 22 -->
<li class="list-group-item project-item">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">22. Text to Speech Converter</h5>
<a
href="https://github.com/ianshulx/React-projects-for-beginners/tree/main/text_to_speech"
target="_blank"
class="btn"
><i class="bi bi-github"></i
></a>
</div>
<p class="mb-1">
Simple Website helpful to convert text written in the text
area into voices. Controller of voice, sound, pitch and
speed options are also provided.
</p>
</li>
<!-- Add more projects as needed -->
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="text-center" style="padding: 20px">
<h1 class="hero-text">Our Contributors</h1>
<div id="contributors-box">
<ul id="contributors-list">
<!-- Contributors will be displayed here -->
</ul>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-light text-center py-3">
<div class="container">
<p>
© 2023 <a href="https://hacktoberfest.com/">HacktoberFest</a>
</p>
<a
href="https://github.com/ianshulx"
class="text-light"
target="_blank"
>
<i class="bi bi-github"></i>
</a>
<a
href="https://www.instagram.com/hackers.core/?hl=en"
class="text-light"
target="_blank"
>
<i class="bi bi-instagram"></i>
</a>
<p></p>
<p>
This repository is licensed under the MIT license. See the
<a
href="https://github.com/ianshulx/React-projects-for-beginners/blob/main/LICENSE"
>LICENSE
</a>
file for more information.
</p>
</div>
</footer>
<script>
// Replace with your GitHub repository URL
const repoUrl =
"https://api.github.com/repos/ianshulx/React-projects-for-beginners/contributors";
// Fetch contributors data from GitHub API
fetch(repoUrl)
.then((response) => response.json())
.then((data) => {
const contributorsList = document.getElementById("contributors-list");
// Loop through the contributors and create list items
data.forEach((contributor) => {
const listItem = document.createElement("li");
listItem.innerHTML = `
<a href="${contributor.html_url}" target="_blank">
<img src="${contributor.avatar_url}" alt="${contributor.login}" width="100" height="100">
<p>${contributor.login}</p>
</a>
`;
contributorsList.appendChild(listItem);
});
})
.catch((error) => {
console.error("Error fetching data:", error);
});
</script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</body>
</html>