Skip to content

Commit 3610314

Browse files
committed
Updated the Developer Review Section
1 parent 55bcde9 commit 3610314

File tree

3 files changed

+41
-7
lines changed

3 files changed

+41
-7
lines changed

index.html

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
88
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
99
<link rel="stylesheet" href="style.css">
10-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css"/>
1110
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
1211
</head>
1312
<body>
@@ -98,8 +97,43 @@ <h3>No projects found</h3>
9897
</div>
9998
</section>
10099

101-
102100
<!-- Developer Reviews Section -->
101+
<section class="reviews-section" id="reviews" style="padding: 80px 0; background-color: #f9f9f9;">
102+
<div class="container" style="max-width: 1100px; margin: 0 auto;">
103+
<h2 class="section-title" style="text-align: center; font-size: 3rem; font-weight: bold; margin-bottom: 50px;color:#4b0082;">Developer Reviews</h2>
104+
<div class="reviews-grid" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;">
105+
<div class="review-card" style="background: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);">
106+
<h3>Jane Doe</h3>
107+
<p style="font-style: italic;">"CodeCanvas has completely changed the way I discover front-end projects. Super intuitive!"</p>
108+
<p style="color: #777;">Frontend Developer</p>
109+
</div>
110+
<div class="review-card" style="background: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);">
111+
<h3>Raj Patel</h3>
112+
<p style="font-style: italic;">"A must-have platform for developers looking to showcase their UI/UX skills."</p>
113+
<p style="color: #777;">Open Source Contributor</p>
114+
</div>
115+
<div class="review-card" style="background: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);">
116+
<h3>Maria Gonzales</h3>
117+
<p style="font-style: italic;">"I’ve found so many cool projects to contribute to. Highly recommended!"</p>
118+
<p style="color: #777;">Full Stack Developer</p>
119+
</div>
120+
<div class="review-card" style="background: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);">
121+
<h3>Leo Kim</h3>
122+
<p style="font-style: italic;">"Love the simplicity and design. It's like Behance but for front-end developers."</p>
123+
<p style="color: #777;">UI/UX Designer</p>
124+
</div>
125+
<div class="review-card" style="background: white; padding: 25px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);">
126+
<h3>Sara Ahmed</h3>
127+
<p style="font-style: italic;">"Great place to get feedback on your code and build your portfolio!"</p>
128+
<p style="color: #777;">JavaScript Enthusiast</p>
129+
</div>
130+
</div>
131+
</div>
132+
</section>
133+
134+
<!-- DEVELOPER REVIEW SECTION -->
135+
136+
<!-- Developer Reviews Section -->
103137
<section class="reviews-section" id="reviews">
104138
<h2 class="review-section-title">
105139
Developer Reviews
@@ -368,8 +402,6 @@ <h3 class="review-name">Sara Ahmed</h3>
368402
</div>
369403
</footer>
370404
<button id="scrollToTopBtn" title="Go to top"></button>
371-
372-
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
373405
<script src="script.js"></script>
374406
<script>
375407
const toggle = document.getElementById('darkModeToggle');
@@ -412,4 +444,4 @@ <h3 class="review-name">Sara Ahmed</h3>
412444
});
413445

414446
</script>
415-
</body>
447+
</body>

script.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ function validateForm() {
345345
icon.textContent = theme === 'dark' ? '☀️' : '🌙';
346346
});
347347

348+
//Review Section JS
348349
const swiper = new Swiper(".review-swiper", {
349350
loop: true,
350351
slidesPerView: 1,

style.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,9 @@
489489
box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
490490
}
491491

492+
/* REVIEW SECTION */
492493

493-
494+
494495
/* REVIEW SECTION */
495496
.reviews-section {
496497
padding: 60px 0;
@@ -1102,4 +1103,4 @@ body.dark-theme .fill-btn:hover {
11021103
#scrollToTopBtn:hover {
11031104
background-color: #5a67d8;
11041105
transform: scale(1.1);
1105-
}
1106+
}

0 commit comments

Comments
 (0)