import React, { Component } from 'react';
import Link from 'next/link';
import * as Icon from 'react-feather';
class PricingStyleFour extends Component {
openTabSection = (evt, tabNmae) => {
let i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabs_item");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByTagName("li");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace("current", "");
}
document.getElementById(tabNmae).style.display = "block";
evt.currentTarget.className += "current";
}
render() {
return (
Our Pricing Plan
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
- this.openTabSection(e, 'tab1')}
>
Monthly Plan
- this.openTabSection(e, 'tab2')}>
Yearly Plan
Free
Get your business up
and running
$0 /m
- Drag & Drop Builder
- Lead Generation & Sales
- Boot & Digital Assistants
- Customer Service
- Up to 1000 Subscribers
- Unlimited Broadcasts
- Landing Pages & Web Widgets
Pro
Get your business up
and running
$149 /m
- Drag & Drop Builder
- Lead Generation & Sales
- Boot & Digital Assistants
- Customer Service
- Up to 3300 Subscribers
- Unlimited Broadcasts
- Landing Pages & Web Widgets
Premium
Get your business up
and running
$179 /m
- Drag & Drop Builder
- Lead Generation & Sales
- Boot & Digital Assistants
- Customer Service
- Up to 10000 Subscribers
- Unlimited Broadcasts
- Landing Pages & Web Widgets
Free
Get your business up
and running
$0 /y
- Drag & Drop Builder
- Lead Generation & Sales
- Boot & Digital Assistants
- Customer Service
- Up to 1000 Subscribers
- Unlimited Broadcasts
- Landing Pages & Web Widgets
Pro
Get your business up
and running
$249 /y
- Drag & Drop Builder
- Lead Generation & Sales
- Boot & Digital Assistants
- Customer Service
- Up to 3300 Subscribers
- Unlimited Broadcasts
- Landing Pages & Web Widgets
Premium
Get your business up
and running
$279 /y
- Drag & Drop Builder
- Lead Generation & Sales
- Boot & Digital Assistants
- Customer Service
- Up to 10000 Subscribers
- Unlimited Broadcasts
- Landing Pages & Web Widgets
{/* Shape Images */}
);
}
}
export default PricingStyleFour;