Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions website/templates/gsoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,19 @@ <h3 class="text-xl font-semibold text-gray-900">Sudhir Palavalasa</h3>
</div>
</div>
</div>
<div class="space-y-6">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Ahmed ElSheikh -->
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition-shadow">
<div class="flex items-center mb-4">
<div>
<h3 class="text-xl font-semibold text-gray-900">Ahmed ElSheikh</h3>
</div>
Comment on lines +677 to +679
Copy link

Copilot AI Jul 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] This flex container wraps only a single name element. Consider removing the extra

or add the mentor’s avatar here to match the structure of other mentor cards and simplify the markup.

Suggested change
<div>
<h3 class="text-xl font-semibold text-gray-900">Ahmed ElSheikh</h3>
</div>
<img src="{% static 'images/mentors/ahmed_elsheikh.jpg' %}" alt="Ahmed ElSheikh" class="w-12 h-12 rounded-full mr-4">
<h3 class="text-xl font-semibold text-gray-900">Ahmed ElSheikh</h3>

Copilot uses AI. Check for mistakes.
</div>
<p class="text-gray-700">As a cybersecurity analyst and AI security engineer, I bring a strong background in threat detection, secure system design, and AI model protection. For GSoC 2025, I'm mentoring students on cutting-edge AI fingerprinting techniques and secure AI integrations in web applications. My goal is to empower contributors to build real-world, secure systems while learning to navigate the intersection of AI and cybersecurity.</p>
</div>
Comment on lines +673 to +682
Copy link

Copilot AI Jul 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Since there’s only one card inside this grid, you may remove or consolidate this wrapper to reduce unnecessary nesting unless you anticipate adding more cards alongside.

Suggested change
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Ahmed ElSheikh -->
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition-shadow">
<div class="flex items-center mb-4">
<div>
<h3 class="text-xl font-semibold text-gray-900">Ahmed ElSheikh</h3>
</div>
</div>
<p class="text-gray-700">As a cybersecurity analyst and AI security engineer, I bring a strong background in threat detection, secure system design, and AI model protection. For GSoC 2025, I'm mentoring students on cutting-edge AI fingerprinting techniques and secure AI integrations in web applications. My goal is to empower contributors to build real-world, secure systems while learning to navigate the intersection of AI and cybersecurity.</p>
</div>
<!-- Ahmed ElSheikh -->
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-md transition-shadow">
<div class="flex items-center mb-4">
<div>
<h3 class="text-xl font-semibold text-gray-900">Ahmed ElSheikh</h3>
</div>
</div>
<p class="text-gray-700">As a cybersecurity analyst and AI security engineer, I bring a strong background in threat detection, secure system design, and AI model protection. For GSoC 2025, I'm mentoring students on cutting-edge AI fingerprinting techniques and secure AI integrations in web applications. My goal is to empower contributors to build real-world, secure systems while learning to navigate the intersection of AI and cybersecurity.</p>

Copilot uses AI. Check for mistakes.
</div>
</div>
</div>
<!-- Past Mentors Section -->
<div class="bg-white rounded-xl shadow-lg transition-all duration-300 p-8 mb-20 border border-gray-100">
Expand Down
Loading