import React from 'react'; import plans from 'data/CloudHosting/plans.json'; const Pricing = () => { return (
best plans

Hosting Plans Include

Free to focus on growing your business, let us handle your site

{ plans.map((plan, index) => (
{ plan.title }

{ plan.description }

${plan.price} /mo

{ plan.highlight }

{ plan.text }

Purchase Plan
    { plan.features.map((feature, i) => (
  • { feature.value } { feature.title }

  • )) }
)) }
In addition to Windows Web Hosting plans, we offer Linux Plans
) } export default Pricing