add all modif in the portfolio git

This commit is contained in:
M1n-0
2026-06-08 14:40:14 +02:00
parent 70fb6b82bd
commit 439a00ea76
13 changed files with 904 additions and 91 deletions

View File

@@ -1,17 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../../static/index.css">
<title>Document</title>
</head>
<body>
<h1 class="test">index</h1>
<a href="/">index</a>
<a href="/projects">projects</a>
<a href="/about">about</a>
<a href="/contact">contact</a>
<a href="/experiences">experiences</a>
</body>
</html>
{% extends "view/base.html" %}
{% block title %}Nino LABAT{% endblock %}
{% block extra_css %}
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
{% endblock %}
{% block content %}
<section class="hero">
<div class="container">
<div class="hero-inner">
<p class="hero-pre">Bonjour, je suis</p>
<h1 class="hero-name">Nino LABAT</h1>
<h2 class="hero-title">Développeur embarqué &amp; Maker</h2>
<p class="hero-desc">
Passionné par les systèmes embarqués, la robotique et l'infrastructure,
je conçois des projets mêlant logiciel, matériel et déploiement concret.
Du composant électronique jusqu'au serveur en production.
</p>
<div class="hero-cta">
<a href="/projects" class="btn-primary">Voir mes projets</a>
<a href="/about" class="btn-secondary">En savoir plus</a>
</div>
<div class="hero-stack">
<span class="tag">ESP32</span>
<span class="tag">Arduino</span>
<span class="tag">Raspberry Pi</span>
<span class="tag">Docker</span>
<span class="tag">Python</span>
<span class="tag">C / C++</span>
</div>
</div>
</div>
</section>
{% endblock %}