diff --git a/constants/tier.tsx b/constants/tier.tsx new file mode 100644 index 0000000..2f0a43b --- /dev/null +++ b/constants/tier.tsx @@ -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: () => {}, + }, +];