Update constants/tier.tsx
This commit is contained in:
parent
b417bd5861
commit
c255f872f5
|
|
@ -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: () => {},
|
||||||
|
},
|
||||||
|
];
|
||||||
Loading…
Reference in New Issue