import Link from "next/link"; import React, { useState } from "react"; const PricingHero = () => { const [oneMonth, setOneMonth] = useState(0); const [threeMonth, setThreeMonth] = useState(0); const [oneYear, setOneYear] = useState(0); return (

Pricing

Tailor your coffee shop management with our time-flexible pricing plans. All packages offer the same comprehensive features, differing only in duration to suit your business needs. Choose from monthly, quarterly, or annual options, each designed for ease and efficiency.

setOneMonth(0)} >

up 10 user

setOneMonth(1)} >

up 25 user

setOneMonth(2)} >

up 50 user

1 Mounth

{oneMonth == 0 ? " 15,000,000 R" : oneMonth == 1 ? " 24,000,000 R" : oneMonth == 2 ? " 29,500,000 R" : " 15,000,000 R"}

It could be the best package for you, so feel free to use the 14-day free trial

setThreeMonth(0)} >

up 10 user

setThreeMonth(1)} >

up 25 user

setThreeMonth(2)} >

up 50 user

3 Mounth

{threeMonth == 0 ? " 36,000,000 R" : threeMonth == 1 ? " 57,600,000 R" : threeMonth == 2 ? " 70,800,000 R" : " 36,000,000 R"}{" "}

It could be the best package for you, so feel free to use the 14-day free trial

setOneYear(0)} >

up 10 user

setOneYear(1)} >

up 25 user

setOneYear(2)} >

up 50 user

12 Mounth

{oneYear == 0 ? " 108,000,000 R" : oneYear == 1 ? " 172,800,000 R" : oneYear == 2 ? " 212,400,000 R" : " 108,000,000 R"}{" "}

It could be the best package for you, so feel free to use the 14-day free trial

); }; export default PricingHero;