- SEO: nouveau title/description optimisé artisans BTP Nord (59) - Navbar: CTA téléphone cliquable + menu simplifié - Hero: fond sombre, H1 percutant "aussi solide que vos ouvrages" - Nouvelle section Problématique (identification pain points) - System: redesign sombre "Dossier de Confiance" avec 3 piliers tech - Démos Live: 3 cards vers /macon, /paysagiste, /plombier - FAQ: nouvelles questions orientées objections (Facebook, site gratuit) - Footer: SEO avec expertises + zone d'intervention étendue - /macon: galerie Avant/Après + bouton Urgence Fuite - /paysagiste: design épuré + filtrage Création vs Entretien - /plombier: tarifs clairs + formulaire diagnostic rapide https://claude.ai/code/session_01H2aRGDaKgarPvhay2HxN6Y
75 lines
2.9 KiB
TypeScript
75 lines
2.9 KiB
TypeScript
import Link from "next/link";
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="border-t border-border py-10 md:py-12 bg-bg-white">
|
|
<div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
{/* Brand */}
|
|
<div>
|
|
<Link href="/" className="flex items-center gap-2 mb-3" aria-label="HookLab - Accueil">
|
|
<div className="w-8 h-8 bg-navy rounded-lg flex items-center justify-center">
|
|
<span className="text-white font-bold text-sm">H</span>
|
|
</div>
|
|
<span className="text-lg font-bold text-navy">
|
|
Hook<span className="text-orange">Lab</span>
|
|
</span>
|
|
</Link>
|
|
<p className="text-text-light text-sm leading-relaxed max-w-xs">
|
|
Création de sites pour le Bâtiment et l’Artisanat.
|
|
</p>
|
|
<p className="text-text-muted text-xs mt-3">
|
|
59148 Flines-lez-Raches
|
|
</p>
|
|
</div>
|
|
|
|
{/* Expertises SEO */}
|
|
<div>
|
|
<h4 className="text-navy font-semibold text-sm mb-4">
|
|
Expertises
|
|
</h4>
|
|
<ul className="space-y-2 text-text-light text-sm">
|
|
<li>Site internet Couvreur</li>
|
|
<li>SEO Maçonnerie</li>
|
|
<li>Webmaster Paysagiste</li>
|
|
<li>Visibilité Menuisier</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Legal */}
|
|
<div>
|
|
<h4 className="text-navy font-semibold text-sm mb-4">Légal</h4>
|
|
<ul className="space-y-2">
|
|
<li>
|
|
<Link href="/mentions-legales" className="text-text-light hover:text-navy text-sm transition-colors">
|
|
Mentions légales
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="/confidentialite" className="text-text-light hover:text-navy text-sm transition-colors">
|
|
Politique de Confidentialité
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="/plan-du-site" className="text-text-light hover:text-navy text-sm transition-colors">
|
|
Plan du site
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Bottom SEO */}
|
|
<div className="border-t border-border mt-8 pt-6 flex flex-col md:flex-row items-center justify-between gap-3">
|
|
<p className="text-text-muted text-xs">
|
|
© {new Date().getFullYear()} HookLab — Enguerrand Ozano · SIREN 994 538 932
|
|
</p>
|
|
<p className="text-text-muted text-xs text-center md:text-right">
|
|
Intervention : Douai · Orchies · Arleux · Valenciennes · Saint-Amand-les-Eaux
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|