🎨 UI: sections temoignages et vedettes

This commit is contained in:
2026-02-04 23:06:59 +01:00
parent ca008f66bb
commit cbd0b76074
11 changed files with 21 additions and 10 deletions

View File

@@ -198,7 +198,7 @@ include_template('navbar', compact('currentPage'));
<?php $testimonials = getTestimonials(); ?>
<?php if (!empty($testimonials)): ?>
<section class="section bg-surface">
<section class="section">
<div class="container-content">
<div class="section-header">
<h2 class="section-title">Ce Qu'ils Disent</h2>
@@ -230,4 +230,4 @@ include_template('navbar', compact('currentPage'));
</section>
</main>
<?php include_template('footer'); ?>
<?php include_template('footer'); ?>

View File

@@ -21,6 +21,13 @@ include_template('navbar', compact('currentPage'));
</div>
<?php if (!empty($featuredProjects)): ?>
<div class="mt-10 mb-16">
<h2 class="text-heading mb-3">Projets vedettes</h2>
<p class="text-text-secondary max-w-2xl">
Une sélection de projets qui montrent le mieux mon approche produit et technique.
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 lg:gap-8">
<?php foreach ($featuredProjects as $project): ?>
<?php include_template('project-card', ['project' => $project]); ?>
@@ -48,4 +55,4 @@ include_template('navbar', compact('currentPage'));
</section>
</main>
<?php include_template('footer'); ?>
<?php include_template('footer'); ?>