diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 8d0f35c..ee7177a 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -23,7 +23,7 @@ export default function PricingPage() { borderRadius="soft" contentWidth="small" sizing="largeSmall" - background="noise" + background="circleGradient" cardStyle="outline" primaryButtonStyle="flat" secondaryButtonStyle="solid" @@ -34,8 +34,7 @@ export default function PricingPage() { brandName="Guesto" navItems={navItems} button={{ - text: "Get Started", - href: "https://app.guesto.com/login" + text: "Get Started", href: "https://app.guesto.com/login" }} /> @@ -51,58 +50,30 @@ export default function PricingPage() { animationType="slide-up" plans={[ { - id: "starter", - badge: "Starter", - badgeIcon: Zap, - price: "₹999/month", - subtitle: "Perfect for solo agents", - buttons: [ + id: "starter", badge: "Starter", badgeIcon: Zap, + price: "₹999/month", subtitle: "Perfect for solo agents", buttons: [ { text: "Get Started", href: "https://app.guesto.com/signup" } ], features: [ - "Up to 50 customers", - "Unlimited itineraries", - "PDF export", - "Basic reporting", - "Email support" + "Up to 50 customers", "Unlimited itineraries", "PDF export", "Basic reporting", "Email support" ] }, { - id: "professional", - badge: "Professional", - badgeIcon: Star, - price: "₹2,499/month", - subtitle: "For growing agencies", - buttons: [ + id: "professional", badge: "Professional", badgeIcon: Star, + price: "₹2,499/month", subtitle: "For growing agencies", buttons: [ { text: "Start Free Trial", href: "https://app.guesto.com/signup" } ], features: [ - "Unlimited customers", - "Unlimited itineraries", - "Advanced analytics", - "Multi-user access", - "Priority support", - "AI-powered suggestions", - "Custom branding" + "Unlimited customers", "Unlimited itineraries", "Advanced analytics", "Multi-user access", "Priority support", "AI-powered suggestions", "Custom branding" ] }, { - id: "enterprise", - badge: "Enterprise", - badgeIcon: Crown, - price: "Custom", - subtitle: "For large teams", - buttons: [ + id: "enterprise", badge: "Enterprise", badgeIcon: Crown, + price: "Custom", subtitle: "For large teams", buttons: [ { text: "Contact Sales", href: "#contact" } ], features: [ - "Everything in Professional", - "Dedicated account manager", - "Custom integrations", - "White-label solution", - "Advanced security", - "SLA guarantee", - "Training & onboarding" + "Everything in Professional", "Dedicated account manager", "Custom integrations", "White-label solution", "Advanced security", "SLA guarantee", "Training & onboarding" ] } ]} @@ -111,14 +82,13 @@ export default function PricingPage() {