import Link from "next/link" import { useState } from "react" export default function Pricing1() { const [isPricing, setPricing] = useState(false) const handlePricing = () => setPricing(!isPricing) return ( <>
{/* SECTION TITLE */}
{/* Title */}

Simple, Flexible Pricing

{/* TOGGLE BUTTON */}
Billed monthly Billed yearly {/* Text */}

Save up to 35% with yearly billing

{/* END SECTION TITLE */} {/* PRICING TABLES */}
{/* STARTER PLAN */}
{/* TABLE HEADER */}
{/* Title */}
Starter
{/* Price */}
$ 0 / forever

For professionals getting started with smaller projects.

{/* Button */} Get srarted - it's free

No credit card required

{/* END TABLE HEADER */} {/* PRICING FEATURES */}
  • 2 free projects

  • 1 GB of cloud storage

  • For personal use

  • Weekly data backup

  • No Ads. No trackers

  • 12/5 email support

{/* END STARTER PLAN */} {/* BASIC PLAN */}
{/* TABLE HEADER */}
{/* Title */}
Basic
{/* Price */}
{/* Monthly Price */} {isPricing ?
$ 142.75 / yr {/* Discount Badge */}
Save 30%
:
$ 16.99 / mo
} {/* Yearly Price */} {/* Text */}

For personal use or small teams with simple workflows.

{/* End Price */} {/* Button */} Start 14-day trial

7-Day Money Back Guarantee

{/* END TABLE HEADER */} {/* PRICING FEATURES */}
  • Up to 250 projects

  • 15 GB of Cloud Storage

  • Shared team workspace

  • Daily data backup

  • No Ads. No trackers

  • 12/7 email support

{/* END BASIC PLAN */} {/* ADVANCED PLAN */}
{/* TABLE HEADER */}
{/* Title */}
Advanced
{/* Price */}
{/* Monthly Price */} {isPricing ?
$ 194.99 / yr {/* Discount Badge */}
Save 35%
:
$ 24.99 / mo
} {/* Yearly Price */} {/* Text */}

For growing teams that need more services and flexibility.

{/* End Price */} {/* Button */} Upgrade your plan

7-Day Money Back Guarantee

{/* END TABLE HEADER */} {/* PRICING FEATURES */}
  • Everything in Basic

  • Private cloud hosting

  • Custom security

  • Advanced user permissions

  • Multi-team management

  • 24/7 Email Support

{/* END ADVANCED PLAN */}
{/* PRICING TABLES */} {/* PRICING NOTICE TEXT */}
{/* Text */}

The above prices do not include applicable taxes based on your billing address. The final price will be displayed on the checkout page, before the payment is completed

{/* End container */}
) }