- 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
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import Navbar from "@/components/marketing/Navbar";
|
|
import Hero from "@/components/marketing/Hero";
|
|
import Problematique from "@/components/marketing/Problematique";
|
|
import System from "@/components/marketing/System";
|
|
import DemosLive from "@/components/marketing/DemosLive";
|
|
import AboutMe from "@/components/marketing/AboutMe";
|
|
import FAQ from "@/components/marketing/FAQ";
|
|
import Contact from "@/components/marketing/Contact";
|
|
import Footer from "@/components/marketing/Footer";
|
|
import { getSiteSettings } from "@/lib/sanity/queries";
|
|
|
|
// Revalider les données Sanity toutes les 60 secondes
|
|
export const revalidate = 60;
|
|
|
|
export default async function LandingPage() {
|
|
const siteSettings = await getSiteSettings();
|
|
|
|
return (
|
|
<main id="main-content" className="min-h-screen">
|
|
{/* Navigation */}
|
|
<Navbar />
|
|
|
|
{/* Hero - Le Choc Visuel */}
|
|
<Hero />
|
|
|
|
{/* La Problématique - L'Identification */}
|
|
<Problematique />
|
|
|
|
{/* La Solution HookLab Tech */}
|
|
<System />
|
|
|
|
{/* Démos Live - 3 Dossiers de Confiance */}
|
|
<DemosLive />
|
|
|
|
{/* Qui suis-je - Ancrage Local (Sanity) */}
|
|
<AboutMe settings={siteSettings} />
|
|
|
|
{/* FAQ - Objections */}
|
|
<FAQ />
|
|
|
|
{/* Contact / Audit CTA */}
|
|
<Contact />
|
|
|
|
{/* Footer SEO */}
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|