Skip to content

Commit 37a884e

Browse files
committed
Replace team member icons with GitHub profile pictures and remove Important Technical Information section
1 parent 78ac55f commit 37a884e

2 files changed

Lines changed: 16 additions & 21 deletions

File tree

index.html

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -263,25 +263,7 @@ <h3>Sultan Kernel</h3>
263263
</div>
264264
</div>
265265

266-
<div class="kernel-info-note">
267-
<div class="info-icon">
268-
<i class="fas fa-info-circle"></i>
269-
</div>
270-
<div class="info-content">
271-
<h4>Important Technical Information</h4>
272-
<div class="info-grid">
273-
<div class="info-item">
274-
<strong>Kernel vs Android Version:</strong> Your kernel version (e.g., 5.10.101-android12) may differ from your Android system version (e.g., Android 13). The kernel version typically corresponds to the Android version that shipped with your device.
275-
</div>
276-
<div class="info-item">
277-
<strong>GKI Evolution:</strong> GKI 2.0 (Android 12+) enforces a stable Kernel Module Interface, separating hardware-specific code into loadable modules, unlike Pre-GKI custom kernels that caused fragmentation.
278-
</div>
279-
<div class="info-item">
280-
<strong>LTS Support:</strong> All our kernels are based on Long-Term Support (LTS) kernel versions, ensuring stability and extended security updates for your device.
281-
</div>
282-
</div>
283-
</div>
284-
</div>
266+
285267
</div>
286268
</section>
287269

@@ -346,7 +328,7 @@ <h2 class="section-title">Project Team</h2>
346328
<div class="team-grid">
347329
<div class="team-member">
348330
<div class="member-avatar">
349-
<i class="fas fa-user-crown"></i>
331+
<img src="https://github.com/TheWildJames.png" alt="TheWildJames" class="github-avatar">
350332
</div>
351333
<h3>TheWildJames</h3>
352334
<div class="member-role">Project Owner</div>
@@ -360,7 +342,7 @@ <h3>TheWildJames</h3>
360342

361343
<div class="team-member">
362344
<div class="member-avatar">
363-
<i class="fas fa-user-shield"></i>
345+
<img src="https://github.com/fatalcoder524.png" alt="fatalcoder524" class="github-avatar">
364346
</div>
365347
<h3>fatalcoder524</h3>
366348
<div class="member-role">Co-Owner / Administrator</div>

style.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,13 +1252,26 @@ body {
12521252
margin: 0 auto 25px;
12531253
border: 1px solid var(--border-dark);
12541254
box-shadow: var(--glow-accent);
1255+
overflow: hidden;
12551256
}
12561257

12571258
.member-avatar i {
12581259
font-size: 3rem;
12591260
color: var(--accent-blue);
12601261
}
12611262

1263+
.github-avatar {
1264+
width: 100%;
1265+
height: 100%;
1266+
object-fit: cover;
1267+
border-radius: 50%;
1268+
transition: all 0.3s ease;
1269+
}
1270+
1271+
.team-member:hover .github-avatar {
1272+
transform: scale(1.1);
1273+
}
1274+
12621275
.team-member h3 {
12631276
font-size: 1.5rem;
12641277
font-weight: var(--font-weight-semibold);

0 commit comments

Comments
 (0)