'use client' import Link from 'next/link' import { useState } from 'react' export default function PricingTable() { const [isToggled, setToggled] = useState(false) const handleToggle = () => setToggled(!isToggled) return ( <>
Monthly Yearly
Basic Plan

$ 15.00 / Month

$ 149.00 / Month

  • 5000 User Activities
  • Unlimited Access
  • No Hidden Charge
  • 03 Time Updates
  • Figma Source File
Get this plan Now
Standard Plan

$ 29.00 / Month

$ 229.00 / Month

  • 5000 User Activities
  • Unlimited Access
  • No Hidden Charge
  • 03 Time Updates
  • Figma Source File
Get this plan Now
Corporate Plan

$ 89.00 / Month

$ 889.00 / Month

  • 5000 User Activities
  • Unlimited Access
  • No Hidden Charge
  • 03 Time Updates
  • Figma Source File
Get this plan Now
) }