"use client"; import { useState } from "react"; const basicFeatures = [ { text: "1 Project", included: true }, { text: "100K API Access", included: true }, { text: "100MB Storage", included: true }, { text: "Weekly Reports", included: false }, { text: "7/24 Support", included: false }, ]; const premiumFeatures = [ { text: "5 Projects", included: true }, { text: "100K API Access", included: true }, { text: "200MB Storage", included: true }, { text: "Weekly Reports", included: true }, { text: "7/24 Support", included: false }, ]; const corporateFeatures = [ { text: "20 Projects", included: true }, { text: "300K API Access", included: true }, { text: "500MB Storage", included: true }, { text: "Weekly Reports", included: true }, { text: "7/24 Support", included: true }, ]; export default function Pricing2() { const [isMonthly, setIsMonthly] = useState(true); return (

Our Pricing

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

{/*/column */}
{/*/.row */}

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

Basic Plan

$ 9 mo
$ 99 yr
{/*/.prices */}
    {basicFeatures.map((feature, index) => { const iconClass = feature.included ? "uil-check" : "uil-times bullet-soft-red"; const bgColor = feature.included ? "#dce7f9" : "#fae3e4"; const textColor = feature.included ? "#1fc76f" : "#e2626b"; const iconContent = feature.included ? "e9dd" : "ed3b"; return (
  • {feature.text.split(" ")[0]}{" "} {feature.text.split(" ").slice(1).join(" ")}
  • ); })}
Choose Plan
{/*/.card-body */}
{/*/.pricing */}
{/*/column */}

Premium Plan

$ 19 mo
$ 199 yr
{/*/.prices */}
    {premiumFeatures.map((feature, index) => { const iconClass = feature.included ? "uil-check" : "uil-times bullet-soft-red"; const bgColor = feature.included ? "#dce7f9" : "#fae3e4"; const textColor = feature.included ? "#1fc76f" : "#e2626b"; return (
  • {feature.text.split(" ")[0]}{" "} {feature.text.split(" ").slice(1).join(" ")}
  • ); })}
Choose Plan
{/*/.card-body */}
{/*/.pricing */}
{/*/column */}

Corporate Plan

$ 49 mo
$ 499 yr
{/*/.prices */}
    {corporateFeatures.map((feature, index) => { return (
  • {feature.text.split(" ")[0]}{" "} {feature.text.split(" ").slice(1).join(" ")}
  • ); })}
Choose Plan
{/*/.card-body */}
{/*/.pricing */}
{/*/column */}
{/*/.row */}
{/*/.pricing-wrapper */}
{/* /.container */} {/* /.container */}
); }