Update constants/tier.tsx

This commit is contained in:
kleap-admin 2026-01-18 14:06:53 +00:00
parent b417bd5861
commit c255f872f5
1 changed files with 54 additions and 0 deletions

54
constants/tier.tsx Normal file
View File

@ -0,0 +1,54 @@
export type Tier = {
name: string;
id: string;
href: string;
priceMonthly: string;
priceYearly: string;
description: string;
features: string[];
featured: boolean;
cta: string;
onClick: () => void;
};
export const tiers: Tier[] = [
{
name: "Starter",
id: "tier-starter",
href: "/contact",
priceMonthly: "from €1,500/mo",
priceYearly: "from €1,500/mo",
description: "Perfect for founders looking to start their outbound engine.",
features: [
"1 Seat (One inbox stack)",
"Technical Setup & Warmup",
"ICP & Messaging Strategy",
"Clay-style Enrichment",
"Monthly Management",
"Weekly Reporting",
],
featured: false,
cta: "Book a Call",
onClick: () => {},
},
{
name: "Growth",
id: "tier-growth",
href: "/contact",
priceMonthly: "from €3,000/mo",
priceYearly: "from €3,000/mo",
description: "Ideal for scaling B2B SaaS and service businesses.",
features: [
"2-3 Seats (Multiple inbox stacks)",
"Higher Lead Volume",
"Advanced Personalization",
"Weekly Iteration & Optimization",
"Reply Handling (Optional Add-on)",
"CRM Integration",
"Priority Support",
],
featured: true,
cta: "Book a Call",
onClick: () => {},
},
];