diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 26dc225..8b5a895 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -45,51 +45,20 @@ export default function PricingPage() { description="Start free, upgrade as you grow. All plans include SSL encryption, API access, and 24/7 monitoring. No hidden fees." plans={[ { - id: "basic", - price: "₹499", - name: "Basic", - buttons={[{ text: "Get Started", href: "/contact" }]} - features={[ - "5 searches per month", - "48-hour average delivery", - "Email support", - "Single contact verification", - "Email delivery", - "7-day result retention", - ]} + id: "basic", price: "₹499", name: "Basic", buttons: [{ text: "Get Started", href: "/contact" }], + features: [ + "5 searches per month", "48-hour average delivery", "Email support", "Single contact verification", "Email delivery", "7-day result retention"], }, { - id: "standard", - badge: "Most Popular", - badgeIcon: Sparkles, - price: "₹999", - name: "Standard", - buttons={[{ text: "Get Started", href: "/contact" }]} - features={[ - "20 searches per month", - "24-hour average delivery", - "Priority email support", - "Bulk contact verification (up to 50)", - "Monthly analytics reports", - "30-day result retention", - "Advanced filtering options", - ]} + id: "standard", badge: "Most Popular", badgeIcon: Sparkles, + price: "₹999", name: "Standard", buttons: [{ text: "Get Started", href: "/contact" }], + features: [ + "20 searches per month", "24-hour average delivery", "Priority email support", "Bulk contact verification (up to 50)", "Monthly analytics reports", "30-day result retention", "Advanced filtering options"], }, { - id: "premium", - price: "₹1999", - name: "Premium", - buttons={[{ text: "Get Started", href: "/contact" }]} - features={[ - "Unlimited searches", - "Same-day delivery", - "24/7 phone & chat support", - "Bulk verification (unlimited)", - "Advanced analytics dashboard", - "Lifetime result retention", - "API access with webhooks", - "Dedicated account manager", - ]} + id: "premium", price: "₹1999", name: "Premium", buttons: [{ text: "Get Started", href: "/contact" }], + features: [ + "Unlimited searches", "Same-day delivery", "24/7 phone & chat support", "Bulk verification (unlimited)", "Advanced analytics dashboard", "Lifetime result retention", "API access with webhooks", "Dedicated account manager"], }, ]} animationType="slide-up" @@ -123,41 +92,17 @@ export default function PricingPage() { sideDescription="Get clarity on billing, refunds, and plan upgrades" faqs={[ { - id: "1", - title: "Can I upgrade or downgrade my plan?", - content: - "Yes, you can change your plan at any time. Upgrades take effect immediately. Downgrades apply at your next billing cycle.", - }, + id: "1", title: "Can I upgrade or downgrade my plan?", content: "Yes, you can change your plan at any time. Upgrades take effect immediately. Downgrades apply at your next billing cycle."}, { - id: "2", - title: "What payment methods do you accept?", - content: - "We accept all major credit cards, debit cards, and UPI payments. Enterprise customers can arrange custom billing arrangements.", - }, + id: "2", title: "What payment methods do you accept?", content: "We accept all major credit cards, debit cards, and UPI payments. Enterprise customers can arrange custom billing arrangements."}, { - id: "3", - title: "Is there a free trial available?", - content: - "Yes! Get 3 free searches with email verification. No credit card required to start your trial.", - }, + id: "3", title: "Is there a free trial available?", content: "Yes! Get 3 free searches with email verification. No credit card required to start your trial."}, { - id: "4", - title: "What happens to unused searches?", - content: - "Monthly searches reset at the start of each billing cycle. Unused searches do not roll over, but this encourages regular usage and maximum ROI.", - }, + id: "4", title: "What happens to unused searches?", content: "Monthly searches reset at the start of each billing cycle. Unused searches do not roll over, but this encourages regular usage and maximum ROI."}, { - id: "5", - title: "Do you offer annual billing discounts?", - content: - "Yes! Annual plans come with 15-20% savings. Contact our sales team for enterprise volume discounts.", - }, + id: "5", title: "Do you offer annual billing discounts?", content: "Yes! Annual plans come with 15-20% savings. Contact our sales team for enterprise volume discounts."}, { - id: "6", - title: "What is your refund policy?", - content: - "We offer a 30-day money-back guarantee if you are unsatisfied. No questions asked. Contact support@contactfinder.com to initiate a refund.", - }, + id: "6", title: "What is your refund policy?", content: "We offer a 30-day money-back guarantee if you are unsatisfied. No questions asked. Contact support@contactfinder.com to initiate a refund."}, ]} faqsAnimation="slide-up" textPosition="left" @@ -170,32 +115,28 @@ export default function PricingPage() {