"use client"; import React, { useState } from "react"; import Image from "next/image"; import { pricingPlans } from "@/data/pricing"; export default function Pricing() { const [isMonthly, setIsMonthly] = useState(true); return (

Our Pricing

We offer great prices , premium and quality products for your business.

Enjoy a{" "} free 30-day trial {" "} and experience the full service. No credit card required!

See All Prices
{/*/column */}

Monthly

{ setIsMonthly((pre) => !pre); }} className="pricing-switchers w-8 h-4 clear-both !text-center !relative bg-[rgba(30,34,40,0.07)] !box-content rounded-3xl border-[0.2rem] border-solid border-transparent" >

Yearly (Save 30%)

{pricingPlans.map((plan, index) => (
$ {plan.monthlyPrice} mo
$ {plan.yearlyPrice} yr

{plan.title}

    {plan.features.map((feature, idx) => (
  • {feature.text}
  • ))}
Choose Plan
))} {/*/column */}
{/*/.row */}
{/*/column */}
{/*/.row */}
image
{/*/column */}
image
{/*/column */}

5000+

Satisfied Customers

{/*/.card-body */}
{/*/.card */}
{/*/column */}
{/*/.row */}
{/*/column */}
{/*/.row */}
{/*/column */}

Let’s Talk

Let's make something great together. We are trusted by over 5000+ clients. Join them by using our services and grow your business.

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

Join Us
{/*/column */}
{/*/.row */}
{/* /.container */}
); }