Story 3.3: liste projets vedettes

This commit is contained in:
2026-02-04 17:08:47 +01:00
parent 0409bb1327
commit 136cdf1736
6 changed files with 136 additions and 32 deletions

View File

@@ -1,16 +1,37 @@
<?php
$pageTitle = 'Projets';
$pageTitle = 'Mes Projets';
$pageDescription = 'Découvrez mes réalisations web : sites vitrines, e-commerce, applications et plus encore.';
$currentPage = 'projects';
include_template('header', compact('pageTitle'));
$featuredProjects = getProjectsByCategory('vedette');
include_template('header', compact('pageTitle', 'pageDescription'));
include_template('navbar', compact('currentPage'));
?>
<main class="min-h-screen">
<div class="container-content py-20">
<h1 class="text-heading mb-4">Projets</h1>
<p class="text-text-secondary">La liste des projets arrive bientôt.</p>
</div>
<main>
<section class="section">
<div class="container-content">
<div class="section-header">
<h1 class="section-title">Mes Projets</h1>
<p class="section-subtitle">
Découvrez les réalisations qui illustrent mon travail et mes compétences.
</p>
</div>
<?php if (!empty($featuredProjects)): ?>
<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]); ?>
<?php endforeach; ?>
</div>
<?php else: ?>
<p class="text-center text-text-muted py-12">
Projets à venir...
</p>
<?php endif; ?>
</div>
</section>
</main>
<?php include_template('footer'); ?>