Files
obc-terrassement/app/page.tsx
Claude 1926d51213 fix: supprime social proof fake, fixe bannière + navbar, popup mobile
- Supprime SocialProofTicker (notifications fake visiblement artificielles)
- Navbar passe de fixed à sticky pour s'empiler correctement sous la bannière
- Bannière d'annonce responsive (texte court sur mobile, bouton close adapté)
- Hero: réduit le padding top (plus besoin de compenser un navbar fixed)
- Exit-intent popup fonctionne sur mobile (trigger au scroll-up après 60% de page)
- Popup responsive: tailles ajustées pour mobile

https://claude.ai/code/session_01H2aRGDaKgarPvhay2HxN6Y
2026-02-11 16:46:54 +00:00

69 lines
1.8 KiB
TypeScript

import AnnouncementBar from "@/components/marketing/AnnouncementBar";
import Navbar from "@/components/marketing/Navbar";
import Hero from "@/components/marketing/Hero";
import ResultsShowcase from "@/components/marketing/ResultsShowcase";
import Method from "@/components/marketing/Method";
import PersonaCards from "@/components/marketing/PersonaCards";
import ComparisonTable from "@/components/marketing/ComparisonTable";
import Testimonials from "@/components/marketing/Testimonials";
import Pricing from "@/components/marketing/Pricing";
import TrustBadges from "@/components/marketing/TrustBadges";
import FAQ from "@/components/marketing/FAQ";
import FinalCTA from "@/components/marketing/FinalCTA";
import Footer from "@/components/marketing/Footer";
import ExitIntentPopup from "@/components/marketing/ExitIntentPopup";
import StickyMobileCTA from "@/components/marketing/StickyMobileCTA";
export default function LandingPage() {
return (
<main className="min-h-screen">
{/* Top announcement bar */}
<AnnouncementBar />
{/* Navigation */}
<Navbar />
{/* Hero with SEO-optimized H1 */}
<Hero />
{/* Market opportunity + timeline */}
<section id="resultats">
<ResultsShowcase />
</section>
{/* 3-step method */}
<Method />
{/* Target personas */}
<PersonaCards />
{/* Comparison table */}
<ComparisonTable />
{/* Testimonials with disclaimer */}
<Testimonials />
{/* Pricing with urgency */}
<Pricing />
{/* Trust signals */}
<TrustBadges />
{/* FAQ with structured data */}
<FAQ />
{/* Final CTA */}
<FinalCTA />
{/* Footer */}
<Footer />
{/* Exit intent popup */}
<ExitIntentPopup />
{/* Sticky mobile CTA bar */}
<StickyMobileCTA />
</main>
);
}