Files
Claude 45d080197a feat: add WordPress theme hooklab (réplique exacte du site Next.js)
- style.css : design system complet (navy #1B2A4A, orange #E8772E, Inter, animations)
- functions.php : enqueue scripts/styles + handler AJAX formulaire contact
- header.php : navbar sticky avec burger mobile
- front-page.php : toutes les sections (Hero, Problématique, Process, Demos, About, FAQ, Contact)
- footer.php : footer 3 colonnes + bottom bar légal
- js/main.js : scroll reveal, FAQ accordion, menu mobile, formulaire AJAX
- index.php / page.php : templates fallback

https://claude.ai/code/session_01PzA98VhLMmsHpzs7gnLHGs
2026-02-24 21:37:14 +00:00

11 lines
409 B
PHP

<?php get_header(); ?>
<main style="max-width:800px;margin:4rem auto;padding:0 1.5rem">
<?php if (have_posts()): while (have_posts()): the_post(); ?>
<article>
<h1 style="color:var(--navy);margin-bottom:1.5rem"><?php the_title(); ?></h1>
<div style="color:var(--text-l);line-height:1.8"><?php the_content(); ?></div>
</article>
<?php endwhile; endif; ?>
</main>
<?php get_footer(); ?>