21 lines
561 B
PHP
21 lines
561 B
PHP
<?php
|
|
// index.php - Point d'entrée
|
|
|
|
require_once __DIR__ . '/includes/functions.php';
|
|
|
|
include_template('header', [
|
|
'pageTitle' => 'Accueil',
|
|
'pageDescription' => 'Portfolio de développeur web. Découvrez mes projets et compétences.'
|
|
]);
|
|
?>
|
|
|
|
<main class="min-h-screen">
|
|
<div class="container-content py-20">
|
|
<h1 class="text-display text-center">Hello World</h1>
|
|
<p class="text-center text-text-secondary mt-4">
|
|
Le portfolio est en construction.
|
|
</p>
|
|
</div>
|
|
</main>
|
|
|
|
<?php include_template('footer'); ?>
|