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
This commit is contained in:
46
wordpress/themes/hooklab/footer.php
Normal file
46
wordpress/themes/hooklab/footer.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<!-- FOOTER -->
|
||||
<footer id="hl-footer">
|
||||
<div class="container">
|
||||
<div class="ft-grid">
|
||||
|
||||
<!-- Brand -->
|
||||
<div class="ft-brand">
|
||||
<div class="ft-logo">
|
||||
<div class="lb">H</div>
|
||||
Hook<em>Lab</em>
|
||||
</div>
|
||||
<p>Création de sites internet pour artisans.</p>
|
||||
<small>59148 Flines-lez-Raches</small>
|
||||
</div>
|
||||
|
||||
<!-- Expertises -->
|
||||
<div class="ft-col">
|
||||
<h4>Expertises</h4>
|
||||
<ul>
|
||||
<li><span>Site internet Couvreur</span></li>
|
||||
<li><span>SEO Maçonnerie</span></li>
|
||||
<li><span>Webmaster Paysagiste</span></li>
|
||||
<li><span>Visibilité Menuisier</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Legal -->
|
||||
<div class="ft-col">
|
||||
<h4>Légal</h4>
|
||||
<ul>
|
||||
<li><a href="<?php echo home_url('/mentions-legales'); ?>">Mentions légales</a></li>
|
||||
<li><a href="<?php echo home_url('/confidentialite'); ?>">Politique de Confidentialité</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="ft-bot">
|
||||
<p>© <?php echo date('Y'); ?> HookLab — Enguerrand Ozano · SIREN 994 538 932</p>
|
||||
<p>Intervention : Douai · Orchies · Arleux · Valenciennes</p>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user