"use client"; import React, { useState } from "react"; import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import Image from "next/image"; import { tables2, tables } from "./data"; import { Icon } from "@/components/ui/icon"; import SiteBreadcrumb from "@/components/site-breadcrumb"; const PricingPage = () => { const [check, setCheck] = useState(true); const toggle = () => { setCheck(!check); }; return (

Packages

{tables.map((item, i) => (
{item.ribon && (
{item.ribon}
)}

{item.title}

{check ? ( {item.price_Yearly}{" "} ) : ( {item.price_Monthly} )} Save 20%

per user/month, annually

Designed for teams who need to manage complex workflows with more automation and integration.

))}
{tables2.map((item, i) => ( {item.ribon && (
{item.ribon}
)}

{item.title}

{check ? ( {item.price_Yearly}{" "} ) : ( {item.price_Monthly} )} Save 20%

per user/month, annually

Designed for teams who need to manage complex workflows with more automation and integration.

{item.bg === "bg-default-900" ? ( ) : ( )}
))}
); }; export default PricingPage;