Skip to content

Commit 92bbe18

Browse files
committed
commit
1 parent 783d9fb commit 92bbe18

File tree

3 files changed

+24
-14
lines changed

3 files changed

+24
-14
lines changed

docs/css/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,7 @@ nav ul li a:focus {
411411
.footer {
412412
display: flex;
413413
background-color: var(--footerDarkBg);
414+
height: 100px;
414415
}
415416

416417
.footer .copyright-text {

docs/index.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h2 class="text-center fw-bold mb-4 my-4">Projects</h2>
112112
<!-- GitHub Projects from scripts.js goes here -->
113113
</div>
114114
<div class="text-center mt-3">
115-
<a href="#">View more</a>
115+
<!-- <a href="#">View more</a> -->
116116
</div>
117117
</div>
118118
</section>
@@ -217,9 +217,7 @@ <h2 class="text-center">Our Moderators</h2>
217217
<h3>Olanrewaju Alaba</h3>
218218
<p>Chryz-Hub Founder</p>
219219
<ul>
220-
<li>Fullstack Developer</li>
221-
<li>Technical writer/blogger</li>
222-
<li>Content Creator</li>
220+
<li>Fullstack Web Developer</li>
223221
</ul>
224222
<div class="social-profiles">
225223
<a href="https://github.com/chryzcodez" class="github-profile" rel="norefferer noopener"><i class="fab fa-github"></i></a>
@@ -281,7 +279,7 @@ <h3>Victor Eke</h3>
281279
<div class="box">
282280
<img src="./assets/Moderators/Nicholas.jpg" alt="moderator image" class="moderator-img">
283281
<div class="user-profile">
284-
<h3>Ukpebor Nicholas Osakpolor</h3>
282+
<h3>Ukpebor Nicholas</h3>
285283
<p>Web Developer</p>
286284
<ul>
287285
<li>Open-Source</li>
@@ -315,7 +313,7 @@ <h3>Ukpebor Nicholas Osakpolor</h3>
315313
<footer class="footer">
316314
<div class="container">
317315
<h4 class="copyright-text text-center py-5">
318-
Copyright &copy; Chyrz-hub
316+
Copyright &copy; Chryz-Hub
319317
</h4>
320318
</div>
321319
</footer>

docs/javascript/script.js

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,31 @@ var githubprojectsdomelement = document.getElementById('githubprojects');
3232
let githubprojects = [
3333
{
3434
name: 'chryz-hub/chryz-hub.github.io',
35-
background: 'community-website.jpg',
35+
// background: 'community-website.jpg',
3636
},
3737
{
3838
name: 'chryz-hub/js-projects',
39-
background: 'js-projects.PNG'
39+
// background: 'js-projects.PNG'
4040
},
4141
{
4242
name: 'chryz-hub/py-projects',
43-
background: 'py-projects.PNG'
43+
// background: 'py-projects.PNG'
44+
},
45+
{
46+
name: 'chryz-hub/Chryz-Hub-Blogs',
47+
// background: 'py-projects.PNG'
48+
},
49+
{
50+
name: 'chryz-hub/opensource-4-everyone',
51+
// background: 'py-projects.PNG'
52+
},
53+
{
54+
name: 'chryz-hub/web-dev-resources',
55+
// background: 'py-projects.PNG'
56+
},
57+
{
58+
name: 'chryz-hub/connect',
59+
// background: 'py-projects.PNG'
4460
},
4561
// Here can be added some more projets if needed
4662
];
@@ -72,11 +88,6 @@ function createprojectcard(project, background) {
7288
<div class="project-content">
7389
<h4 class="text-secondary">${project.name}</h4>
7490
<p>${project.description}</p>
75-
<div>
76-
<span class="fab fa-html5"></span>
77-
<span class="fab fa-css3-alt"></span>
78-
<span class="fab fa-js"></span>
79-
</div>
8091
</div>
8192
</div>
8293
</a>

0 commit comments

Comments
 (0)