47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
export const pricingPlans = [
|
|
{
|
|
title: "Basic Package",
|
|
description:
|
|
"Core services for small businesses seeking foundational guidance and actionable strategies.",
|
|
price: "$500 - $1500",
|
|
isHighlighted: false,
|
|
features: [
|
|
"Business Analysis",
|
|
"Strategic Recommendations",
|
|
"Limited Email Support",
|
|
"Initial Consultation",
|
|
],
|
|
buttonStyle: "tf-btn btn-border border-1 w-full",
|
|
},
|
|
{
|
|
title: "Premium Package",
|
|
description:
|
|
"In-depth analysis and tailored strategies for businesses seeking sustainable growth and optimization.",
|
|
price: "$2,000 - $5,500",
|
|
isHighlighted: true,
|
|
features: [
|
|
"In-depth Consultation",
|
|
"Comprehensive Business Analysis",
|
|
"Customized Strategic Plan",
|
|
"Ongoing Email Support",
|
|
"Quarterly Check-Ins",
|
|
],
|
|
buttonStyle: "tf-btn w-full btn-primary2",
|
|
},
|
|
{
|
|
title: "Ultimate Package",
|
|
description:
|
|
"High-touch, strategic guidance for C-suite executives seeking transformative growth and innovation.",
|
|
price: "$5,500+",
|
|
isHighlighted: false,
|
|
features: [
|
|
"Executive Coaching",
|
|
"Business Transformation Plan",
|
|
"Dedicated Account Manager",
|
|
"Priority Access",
|
|
"Exclusive Workshops/Webinars",
|
|
],
|
|
buttonStyle: "tf-btn btn-border border-1 w-full",
|
|
},
|
|
];
|