diff --git a/src/app/page.tsx b/src/app/page.tsx index 9375be8..5fea362 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -31,22 +31,10 @@ export default function LandingPage() { @@ -227,50 +120,17 @@ export default function LandingPage() { useInvertedBackground={false} plans={[ { - id: "basic", - badge: "Basique", - price: "49€", - subtitle: "Pour débuter", - features: [ - "1 boutique", - "IA Standard", - ], - buttons: [ - { - text: "Choisir", - }, - ], + id: "basic", badge: "Basique", price: "49€", subtitle: "Pour débuter", features: ["1 boutique", "IA Standard"], + buttons: [{ text: "Choisir" }] }, { - id: "pro", - badge: "Pro", - price: "99€", - subtitle: "Pour scaler", - features: [ - "5 boutiques", - "IA Avancée", - ], - buttons: [ - { - text: "Choisir", - }, - ], + id: "pro", badge: "Pro", price: "99€", subtitle: "Pour scaler", features: ["5 boutiques", "IA Avancée"], + buttons: [{ text: "Choisir" }] }, { - id: "agency", - badge: "Agency", - price: "299€", - subtitle: "Pour agences", - features: [ - "Illimité", - "IA Premium", - ], - buttons: [ - { - text: "Choisir", - }, - ], - }, + id: "agency", badge: "Agency", price: "299€", subtitle: "Pour agences", features: ["Illimité", "IA Premium"], + buttons: [{ text: "Choisir" }] + } ]} title="Des plans pour tous" description="Choisissez votre formule." @@ -281,21 +141,9 @@ export default function LandingPage() { ); -} +} \ No newline at end of file