Newer
Older
geekbrain_io_web / app / templates / index.html
{% extends "base.html" %}

{% block title %}Geekbrain.io - Accueil{% endblock %}

{% block content %}
<div class="hero">
    <h1>Geekbrain.io</h1>
    <p>Développeur Python / Agentique - Freelance</p>
    <a href="/contact" class="btn">Me contacter</a>
</div>

<div class="grid">
    <div class="card">
        <h3>Services</h3>
        <p>Développement Python, agents autonomes, automatisation, solutions IA sur mesure.</p>
    </div>
    <div class="card">
        <h3>Compétences</h3>
        <p>Python, FastAPI, Django, Docker, Machine Learning, Agents, SQL, NoSQL.</p>
    </div>
    <div class="card">
        <h3>Projets</h3>
        <p>Découvrez mes réalisations sur GitHub, des scripts aux applications complètes.</p>
        <a href="/projects">Voir les projets →</a>
    </div>
</div>
{% endblock %}