"use client"; import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { ChevronDown, ChevronUp, Check, HelpCircle, ShieldCheck, Zap, Smartphone, Globe } from 'lucide-react'; import Navbar from '@/components/Navbar/navbar'; import Footer from '@/components/footer'; const PricingCard = ({ title, description, features, pricing }) => { return (

{title}

{title==="Professional" && ( Popular )}

{description}

{/* Separator Line */}
{features.map((feature, index) => (
{feature}
))}
{/* Separator Line */}

{pricing}

{/* Contact Us */}
); }; const FAQ = ({ question, answer }) => { const [isOpen, setIsOpen] = useState(false); return (

{answer}

); }; const PricingPage = () => { const pricingPlans = [ { title: "Starter", description: "For solopreneurs ready to take a leap.", features: [ "1 monetised site", "10,000 tokens/month", "Use our full suite for internal projects without limits", "Basic Integration", "Basic 24/7 chat support" ], pricing: "£29 GBP/month" }, { title: "Professional", description: "For small teams building multiple revenue streams.", features: [ "Up to 3 active monetised site", "50,000 tokens/month", "Use our full suite for internal projects without limits", "Advanced analytics and integrations", "Basic 24/7 chat support" ], pricing: "£69 GBP/month" }, { title: "Business", description: "For growing companies that demand more power and flexibility.", features: [ "Up to 10 active monetised site", "200,000 tokens/month", "Unlimited projects internally - build, test, and deploy without limits", "Advanced customizations, integrations, and performance tracking", "Priority 24/7 chat support" ], pricing: "£349 GBP/month" }, { title: "Enterprise Plus", description: "For large enterprises with complex needs and full marketplace access.", features: [ "Custom limits based on your requirements", "Unlimited custom GPT Tokens", "Full access to our marketplace with exclusive benefits, including a 20% discount on all solopreneur sites", "Advanced customizations, integrations, exclusive downloadable code offerings on a pay-per-code basis", "SLA-backed, enterprise-grade support with dedicated account management and priority phone support" ], pricing: "Starting at $2,500 USD/month (3-year term required)" } ]; const faqs = [ { question: "How many items are there in this list?", answer: "We consider all the drivers of change gives you the blocks & components you need to change to create a truly professional website." }, { question: "Can you describe Newleaf in just one sentence?", answer: "We consider all the drivers of change gives you the blocks & components you need to change to create a truly professional website." }, { question: "Can I use this template for my client?", answer: "We consider all the drivers of change gives you the blocks & components you need to change to create a truly professional website." }, { question: "Do you offer templates in other categories?", answer: "We consider all the drivers of change gives you the blocks & components you need to change to create a truly professional website." }, { question: "Do I need to credit you when I use this template?", answer: "We consider all the drivers of change gives you the blocks & components you need to change to create a truly professional website." } ]; return (
{/* Hero Section */} Pricing {" "}Plans{" "} Efficiently manage and resolve customer issues, improve satisfaction and boost your bottom line with our all-in-one customer support solution. {/* Pricing Cards */}
{pricingPlans.map((plan, index) => ( ))}
{/* Features Section */}

Features you don't want to miss

{[ { title: "Secure Payments", desc: "Ensure end-to-end security for all your transactions with industry-leading encryption.", icon: , gradient: "from-blue-500 to-cyan-500", }, { title: "Fast Transactions", desc: "Process payments in seconds, reducing wait times and improving efficiency.", icon: , gradient: "from-pink-500 to-red-500", }, { title: "User-Friendly Interface", desc: "Designed with simplicity in mind, making transactions seamless for everyone.", icon: , gradient: "from-green-500 to-teal-500", }, { title: "Global Accessibility", desc: "Access and send payments from anywhere in the world, instantly.", icon: , gradient: "from-yellow-500 to-orange-500", }, ].map((feature, index) => (
{/* Icon Container */}
{feature.icon}
{/* Text Content */}

{feature.title}

{feature.desc}

{/* Soft Glow Effect */}
))}

Efficiently manage and resolve customer issues, improve satisfaction and boost your bottom line with our all-in-one customer support solution. Get the safest way of making online payment & save countless hours of losing money.

{/* Contact Us */}
{/* FAQ Section */}

Get answers to some common questions!

We've curated answers to some of our most frequently asked questions to help you find the information you need quickly and easily.

{faqs.map((faq, index) => ( ))}
); }; export default PricingPage;