Transformation complète du site HookLab de formation TikTok Shop vers une landing page haute conversion pour agence web locale ciblant les artisans du bâtiment dans le Nord (Douai, Orchies, Valenciennes). - Nouveau design system : bleu nuit/orange sur fond clair (mobile-first) - Hero avec promesse artisan + CTA orange "Réserver mon Audit" - Section "Le Système" (3 étapes : Trouvé, Choisi, Contacté) - Portfolio connecté à Sanity.io (fallback data intégré) - Section "Qui suis-je" avec carte OpenStreetMap interactive - FAQ orientée artisans avec JSON-LD pour Google - Formulaire contact audit gratuit - SEO local : 12 keywords artisans, JSON-LD LocalBusiness - Sanity.io schemas (portfolio, siteSettings) + client conditionnel - Accessibilité : skip-to-content, focus-visible, aria-labels https://claude.ai/code/session_01H2aRGDaKgarPvhay2HxN6Y
48 lines
1.9 KiB
TypeScript
48 lines
1.9 KiB
TypeScript
import Button from "@/components/ui/Button";
|
|
|
|
export default function Hero() {
|
|
return (
|
|
<section className="py-16 md:py-24 bg-bg-white" aria-label="Introduction">
|
|
<div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div className="max-w-3xl mx-auto text-center">
|
|
{/* Badge */}
|
|
<span className="inline-block px-3 py-1.5 bg-orange/10 border border-orange/20 rounded-full text-orange text-xs font-semibold mb-6">
|
|
Agence web locale — Flines-lez-Raches, Nord (59)
|
|
</span>
|
|
|
|
{/* H1 SEO */}
|
|
<h1 className="text-3xl sm:text-4xl md:text-5xl lg:text-[3.25rem] font-extrabold text-navy leading-tight tracking-[-0.02em] mb-6">
|
|
Artisans du Nord : Transformez votre bouche-à-oreille en{" "}
|
|
<span className="text-orange">système automatique</span>.
|
|
</h1>
|
|
|
|
{/* Subtitle */}
|
|
<p className="text-text-light text-base sm:text-lg md:text-xl leading-relaxed mb-8 max-w-2xl mx-auto">
|
|
Arrêtez de courir après les chantiers. Laissez votre site
|
|
filtrer et convaincre les bons clients pour vous.
|
|
</p>
|
|
|
|
{/* CTA */}
|
|
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
|
<a href="#contact">
|
|
<Button size="lg" className="w-full sm:w-auto pulse-glow">
|
|
Réserver mon Audit à Flines-lez-Raches
|
|
</Button>
|
|
</a>
|
|
<a href="#systeme">
|
|
<Button size="lg" variant="outline" className="w-full sm:w-auto">
|
|
Découvrir le système
|
|
</Button>
|
|
</a>
|
|
</div>
|
|
|
|
{/* Trust line */}
|
|
<p className="mt-8 text-text-muted text-sm">
|
|
Audit gratuit · Sans engagement · Réponse sous 24h
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|