Files
Portfolio-Codex/pages/skills.php
2026-02-04 17:06:28 +01:00

16 lines
440 B
PHP

<?php
$pageTitle = 'Compétences';
$currentPage = 'skills';
include_template('header', compact('pageTitle'));
include_template('navbar', compact('currentPage'));
?>
<main class="min-h-screen">
<div class="container-content py-20">
<h1 class="text-heading mb-4">Compétences</h1>
<p class="text-text-secondary">Le détail des compétences arrive bientôt.</p>
</div>
</main>
<?php include_template('footer'); ?>