"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 }) => { return (

{title}

{description}

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

For Price :

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

{answer}

); }; const PricingPage = () => { const pricingPlans = [ { title: "Basic", description: "We consider all the drivers of time & change gives the blocks.", features: [ "Full Access to Copler", "100 GB Free Storage", "Unlimited Visitors", "10 Agents", "Live Chat Support" ] }, { title: "Premium", description: "We consider all the drivers of time & change gives the blocks.", features: [ "Full Access to Copler", "100 GB Free Storage", "Unlimited Visitors", "10 Agents", "Live Chat Support" ] } ]; 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;