import Link from "next/link" import { useState } from "react" export default function Pricing3() { 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 25% with yearly billing

{/* END SECTION TITLE */} {/* PRICING TABLES */}
{/* FREE PLAN */}
{/* TABLE HEADER */}
{/* Title */}

Free

{/* Text */}

For anyone getting started with smaller projects.

{/* Price */}
$ 0 forever
{/* END TABLE HEADER */} {/* BUTTON */} Get srarted - it's free

No credit card required

{/* END FREE PLAN */} {/* PLUS PLAN */}
{/* TABLE HEADER */}
{/* Title */}

Plus

{/* Text */}

For personal use or small teams with simple workflows.

{/* Price */}
{/* Monthly Price */} {isPricing ?
$ 35 99 per year
:
$ 3 99 per month
} {/* Yearly Price */}
{/* END TABLE HEADER */} {/* BUTTON */} Start 14-day trial

7-Day Money Back Guarantee

{/* END PLUS PLAN */} {/* PRO PLAN */}
{/* TABLE HEADER */}
{/* Title */}

Pro

{/* Text */}

For growing teams that need more services and flexibility.

{/* Price */}
{/* Monthly Price */} {isPricing ?
$ 62 99 per year
:
$ 6 99 per month
} {/* Yearly Price */}
{/* END TABLE HEADER */} {/* BUTTON */} Upgrade to PRO

7-Day Money Back Guarantee

{/* END PRO 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 */}
) }