import React, { useState } from 'react'; function PlansPanel() { const [annual, setAnnual] = useState(true); return (
{/* Panel body */}
{/* Plans */}

Plans

This workspace’s Basic Plan is set to $34 per month and will renew on July 9, 2021.
{/* Pricing */}
{/* Toggle switch */}
Monthly
setAnnual(!annual)} />
Annually (-20%)
{/* Pricing tabs */}
{/* Tab 1 */}

Basic

Ideal for individuals that need a custom solution with custom tools.
{/* Price */}
${annual? '14': '19'}/mo
{/* CTA */}
What's included
{/* List */}
  • Lorem ipsum dolor sit amet
  • Quis nostrud exercitation
  • Lorem ipsum dolor sit amet
  • Quis nostrud exercitation
{/* Tab 2 */}

Standard

Ideal for individuals that need a custom solution with custom tools.
{/* Price */}
${annual? '34': '39'}/mo
{/* CTA */}
What's included
{/* List */}
  • Lorem ipsum dolor sit amet
  • Quis nostrud exercitation
  • Lorem ipsum dolor sit amet
  • Quis nostrud exercitation
  • Lorem ipsum dolor sit amet
{/* Tab 3 */}

Plus

Ideal for individuals that need a custom solution with custom tools.
{/* Price */}
${annual? '74': '79'}/mo
{/* CTA */}
What's included
{/* List */}
  • Lorem ipsum dolor sit amet
  • Quis nostrud exercitation
  • Lorem ipsum dolor sit amet
  • Quis nostrud exercitation
  • Lorem ipsum dolor sit amet
  • Quis nostrud exercitation
{/* Contact Sales */}
Looking for different configurations?
{/* FAQs */}

FAQs

  • What is the difference between the three versions?
    Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit.
  • Is there any difference between Basic and Plus licenses?
    Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
  • Got more questions?
    Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum in voluptate velit esse cillum dolore eu fugiat contact us.
{/* Panel footer */}
); } export default PlansPanel;