first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-12 23:25:43 -05:00
commit d8c7ec4866
1400 changed files with 90826 additions and 0 deletions
@@ -0,0 +1,33 @@
'use client'
import React from "react";
import { Tab, Tabs, TabList, TabPanel } from "react-tabs";
import PricingMonthly from "./PricingMonthly";
import PricingYearly from "./PricingYearly";
const Pricing = () => {
return (
<div>
<Tabs>
<TabList className="nav nav-tabs justify-content-center pricing-nav-two pricing-nav-two-custom">
<Tab>Monthly</Tab>
<Tab>Yearly</Tab>
</TabList>
<div className="tab-content-wrpper">
<TabPanel>
<PricingMonthly />
</TabPanel>
{/* End Pricing Month */}
<TabPanel>
<PricingYearly />
</TabPanel>
{/* End Pricing Year */}
</div>
</Tabs>
</div>
);
};
export default Pricing;
@@ -0,0 +1,103 @@
import React from "react";
const PricingContent = [
{
packName: "FREE",
price: "0",
billCycle: "3 Free Agents",
preFeatures: [
"Email Ticketing",
"Customer Management",
"Help Center",
"Private Knowledge Base",
"Predefined SLAs",
"Macros",
],
},
{
packName: "Standard",
price: "29",
billCycle: "Per agent billed",
preFeatures: [
"Social & Community",
"Channels",
"Product-based Ticket",
"Management",
"Help Center Themes",
"Gallery",
"Public Knowledge Base",
"SLAs & Escalations",
"Workflow, Assignment",
],
},
{
packName: "Start up",
price: "38",
billCycle: "Per agent billed",
preFeatures: [
"Multi-Department Ticketing",
"Team Management",
"Telephony",
"Automatic Time Tracking",
"Blueprint - Basic Process",
"Management",
"Round Robin Ticket",
"Assignment",
"Agent Collision",
"Tasks, Events & Call",
"Activities",
"Mobile SDKs",
],
},
{
packName: "BUSINESS",
price: "56",
billCycle: "Per agent billed",
preFeatures: [
"Live Chat",
"Zia - Artificial Intelligence",
"Help Center",
"Customization",
"Multi-brand Help Center",
"Advanced Process",
"Management",
"Custom Functions",
"Multi-level IVR",
"Global Reports &",
"Dashboards",
"Scheduled Reports",
"Contract Management",
"Validation Rules",
],
},
];
const PricingMonthly = () => {
return (
<div className="row no-gutters">
{PricingContent.map((val, i) => (
<div className="col-lg-3 col-sm-6 pr-bg d-flex" key={i}>
<div className="pr-table-wrapper">
<div className="pack-name">{val.packName}</div>
<div className="price">
<sup>$</sup>
{val.price}
</div>
<div className="bill-cycle">{val.billCycle}</div>
<a href="#" className="theme-btn-three">
Sign Up
</a>
<ul className="pr-feature">
{val.preFeatures.map((list, i) => (
<li key={i}>{list}</li>
))}
</ul>
</div>
{/* /.pr-table-wrapper */}
</div>
))}
</div>
);
};
export default PricingMonthly;
@@ -0,0 +1,103 @@
import React from "react";
const PricingContent = [
{
packName: "FREE",
price: "0",
billCycle: "3 Free Agents",
preFeatures: [
"Email Ticketing",
"Customer Management",
"Help Center",
"Private Knowledge Base",
"Predefined SLAs",
"Macros",
],
},
{
packName: "Standard",
price: "29",
billCycle: "Per agent billed",
preFeatures: [
"Social & Community",
"Channels",
"Product-based Ticket",
"Management",
"Help Center Themes",
"Gallery",
"Public Knowledge Base",
"SLAs & Escalations",
"Workflow, Assignment",
],
},
{
packName: "Start up",
price: "138",
billCycle: "Per agent billed",
preFeatures: [
"Multi-Department Ticketing",
"Team Management",
"Telephony",
"Automatic Time Tracking",
"Blueprint - Basic Process",
"Management",
"Round Robin Ticket",
"Assignment",
"Agent Collision",
"Tasks, Events & Call",
"Activities",
"Mobile SDKs",
],
},
{
packName: "BUSINESS",
price: "156",
billCycle: "Per agent billed",
preFeatures: [
"Live Chat",
"Zia - Artificial Intelligence",
"Help Center",
"Customization",
"Multi-brand Help Center",
"Advanced Process",
"Management",
"Custom Functions",
"Multi-level IVR",
"Global Reports &",
"Dashboards",
"Scheduled Reports",
"Contract Management",
"Validation Rules",
],
},
];
const PricingYearly = () => {
return (
<div className="row no-gutters">
{PricingContent.map((val, i) => (
<div className="col-lg-3 col-sm-6 pr-bg d-flex" key={i}>
<div className="pr-table-wrapper">
<div className="pack-name">{val.packName}</div>
<div className="price">
<sup>$</sup>
{val.price}
</div>
<div className="bill-cycle">{val.billCycle}</div>
<a href="#" className="theme-btn-three">
Sign Up
</a>
<ul className="pr-feature">
{val.preFeatures.map((list, i) => (
<li key={i}>{list}</li>
))}
</ul>
</div>
{/* /.pr-table-wrapper */}
</div>
))}
</div>
);
};
export default PricingYearly;