diff --git a/src/app/page.tsx b/src/app/page.tsx index 174eacc..99915c5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,12 +28,9 @@ export default function LandingPage() { @@ -109,22 +86,8 @@ export default function LandingPage() { title="Simple Pricing Plans" description="Transparent billing for all our accounting services." plans={[ - { - id: "p1", badge: "Basic", price: "$199/mo", subtitle: "For small teams", buttons: [ - { - text: "Choose Basic", href: "#"}, - ], - features: [ - "Monthly bookkeeping", "Basic financial reporting"], - }, - { - id: "p2", badge: "Pro", price: "$399/mo", subtitle: "For scaling businesses", buttons: [ - { - text: "Choose Pro", href: "#"}, - ], - features: [ - "Payroll management", "Full tax preparation", "Priority support"], - }, + { id: "p1", badge: "Basic", price: "$199/mo", subtitle: "For small teams", buttons: [{ text: "Choose Basic", href: "#" }], features: ["Monthly bookkeeping", "Basic financial reporting"] }, + { id: "p2", badge: "Pro", price: "$399/mo", subtitle: "For scaling businesses", buttons: [{ text: "Choose Pro", href: "#" }], features: ["Payroll management", "Full tax preparation", "Priority support"] }, ]} /> @@ -143,6 +106,12 @@ export default function LandingPage() {
@@ -151,10 +120,8 @@ export default function LandingPage() {