import React from 'react'; import { Book, Sparkles, Feather, Globe, ShieldCheck, Zap, ArrowRight, Star } from 'lucide-react'; interface LandingPageProps { onLogin: () => void; onPricing: () => void; onFeatures: () => void; } const LandingPage: React.FC = ({ onLogin, onPricing, onFeatures }) => { return (
{/* Navbar */} {/* Hero Section */}
NOUVEAUTÉ : GÉNÉRATION DE BIBLE DU MONDE PAR IA

L'écriture d'un roman,
augmentée par l'IA.

PlumeIA est le premier éditeur intelligent qui comprend votre univers, vos personnages et votre style pour vous aider à franchir la page blanche.

Editor Preview
{/* Social Proof */}

Utilisé par les auteurs de demain

FantasyMag Writer's Hub L'Éditeur Novelty
{/* Footer */}
); }; export default LandingPage;