From d136f57551942377e4c69041e57443079a42e195 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 18 Mar 2026 21:06:05 +0000 Subject: [PATCH] feat: Ajout de la section 'Mes Apps' avec 4 tuiles interactives MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Ajout de la section 'πŸš€ Mes Applications' en haut de index.php - 4 tuiles pour CronHub, GarageManager, PercoMemo et Planka - Design cohΓ©rent avec le thΓ¨me dark existant (bg #161b22, borders #30363d) - Effet hover avec bordure violette et lueur subtile - Grid responsive: 4 colonnes desktop, 2 colonnes mobile - Boutons 'Ouvrir' qui ouvrent les apps dans un nouvel onglet - Styles CSS propres et commentΓ©s dans assets/style.css Co-authored-by: CΓ©dric TOMAZ --- assets/style.css | 40 ++++++++++++++++++ index.php | 106 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+) diff --git a/assets/style.css b/assets/style.css index a64a23f..15bc720 100644 --- a/assets/style.css +++ b/assets/style.css @@ -155,3 +155,43 @@ @media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } } + +/* ── App cards (section Mes Apps) ─────────────────────────────────────────── */ +.app-card { + background: #161b22; + border: 1px solid #30363d; + border-radius: 0.75rem; + padding: 1.25rem; + transition: all 0.2s ease; + position: relative; +} + +.app-card:hover { + border-color: #8b5cf6; + box-shadow: 0 0 12px rgba(139, 92, 246, 0.25); + transform: translateY(-2px); +} + +.app-btn { + display: inline-flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + width: 100%; + padding: 0.5rem 1rem; + font-size: 0.875rem; + font-weight: 600; + color: #c4b5fd; + background: #8b5cf610; + border: 1px solid #8b5cf630; + border-radius: 0.5rem; + transition: all 0.15s; + text-decoration: none; +} + +.app-btn:hover { + background: #8b5cf620; + border-color: #8b5cf6; + color: #e9d5ff; + box-shadow: 0 0 8px rgba(139, 92, 246, 0.3); +} diff --git a/index.php b/index.php index efe3e60..f957099 100644 --- a/index.php +++ b/index.php @@ -54,6 +54,112 @@
+ +
+ +
+

πŸš€ Mes Applications

+ 4 +
+ + +
+ + +
+
+ +
+ ⏰ +

CronHub

+
+ + +

+ Gestionnaire de cron jobs +

+ + + + Ouvrir + β†’ + +
+
+ + +
+
+ +
+ πŸš— +

GarageManager

+
+ + +

+ Gestion vΓ©hicules & entretiens +

+ + + + Ouvrir + β†’ + +
+
+ + +
+
+ +
+ πŸ“ +

PercoMemo

+
+ + +

+ MΓ©mos & notes +

+ + + + Ouvrir + β†’ + +
+
+ + +
+
+ +
+ πŸ“‹ +

Planka

+
+ + +

+ Kanban & projets +

+ + + + Ouvrir + β†’ + +
+
+ +
+
+