55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
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: () => window.location.href = "/contact",
|
|
},
|
|
{
|
|
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: () => window.location.href = "/contact",
|
|
},
|
|
];
|