Initial commit

This commit is contained in:
2025-11-27 11:29:46 +00:00
commit 8be9d73db4
16 changed files with 392 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
{% extends "base.html" %}
{% block content %}
<div class="container py-5">
<!-- Hero / Presentation Box -->
<div class="p-5 mb-5 rounded-4 bg-dark text-light shadow hero-box">
<div class="row align-items-center">
<div class="col-md-6 mb-4 mb-md-0">
<h1 class="display-4 mb-3">Bienvenue sur mon portfolio</h1>
<p class="lead">
Salut ! Je suis Valentin, développeur bas-niveau passionné par la cybersécurité et le DevOps.
Ici, vous pouvez découvrir mes projets et me contacter directement.
</p>
</div>
<div class="col-md-6 text-center">
<img src="{{ url_for('static', filename='img/profile.webp') }}"
alt="Profile picture"
class="rounded-circle img-fluid profile-pic"
style="width: 250px; height: 250px; object-fit: cover;">
</div>
</div>
</div>
<!-- Featured Projects Title -->
<h2 class="text-light text-center mb-5">Featured Projects</h2>
<!-- Featured Project Boxes -->
<div class="container mb-5">
<!-- Project 1 (left) -->
<div class="row mb-5 justify-content-start">
<div class="col-md-8">
<a href="https://github.com/Kbz-8/42_KFS" class="text-decoration-none">
<div class="p-4 rounded-4 bg-dark text-light shadow hover-scale">
<div class="row align-items-center">
<!-- Text -->
<div class="col-md-7">
<h4>Kernel From Scratch</h4>
<p>Création d'un kernel en Zig 0.13 avec pilotes claviers et graphiques, IDT, GDT, gestion mémoire et shell intégré</p>
</div>
<!-- Image -->
<div class="col-md-5 text-center">
<img src="{{ url_for('static', filename='img/kfs.png') }}"
alt="Projet 1" class="img-fluid rounded shadow project-img">
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Project 2 (right) -->
<div class="row mb-5 justify-content-end">
<div class="col-md-8">
<a href="https://github.com/Namonay/swifty-companion" class="text-decoration-none">
<div class="p-4 rounded-4 bg-dark text-light shadow hover-scale">
<div class="row align-items-center flex-md-row-reverse">
<div class="col-md-7">
<h4>Swifty Companion</h4>
<p>Application mobile Android et iOS utilisant l'API de 42 pour avoir des informations sur les campus</p>
</div>
<div class="col-md-5 text-center">
<img src="{{ url_for('static', filename='img/companion.png') }}"
alt="Projet 2" class="img-fluid rounded shadow project-img">
</div>
</div>
</div>
</a>
</div>
</div>
<!-- Project 3 (left) -->
<div class="row mb-5 justify-content-start">
<div class="col-md-8">
<a href="https://github.com/C18H24O2/override" class="text-decoration-none">
<div class="p-4 rounded-4 bg-dark text-light shadow hover-scale">
<div class="row align-items-center">
<div class="col-md-7">
<h4>Override</h4>
<p>Défis de cybersécurité sous formes de CTF, avec reverse engineering, pwn et exploitation de failles</p>
</div>
<div class="col-md-5 text-center">
<img src="{{ url_for('static', filename='img/override.png') }}"
alt="Projet 3" class="img-fluid rounded shadow project-img">
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
{% endblock %}