diff --git a/src/app/page.tsx b/src/app/page.tsx
index 208f473..7c84e5b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -28,12 +28,9 @@ export default function LandingPage() {
@@ -112,9 +109,9 @@ export default function LandingPage() {
title="Our Pricing"
description="Choose a plan that fits your needs."
plans={[
- { title: "Starter", description: "For individuals", price: "$99", features: ["Core features"] },
- { title: "Pro", description: "For teams", price: "$299", features: ["All core features", "Support"] },
- { title: "Enterprise", description: "For scaling", price: "$599", features: ["Custom solutions", "Priority support"] }
+ { name: "Starter", description: "For individuals", price: "$99", features: ["Core features"] },
+ { name: "Pro", description: "For teams", price: "$299", features: ["All core features", "Support"] },
+ { name: "Enterprise", description: "For scaling", price: "$599", features: ["Custom solutions", "Priority support"] }
]}
/>