import type { BusinessModel } from "@/content/types";

/** Section-level copy shared by the industry page template. */
export const industrySectionCopy: Record<
  BusinessModel,
  { crumb: string; capabilitiesTitle: string; capabilitiesIntro: string; faqTitle: string }
> = {
  saas: {
    crumb: "SaaS growth marketing",
    capabilitiesTitle: "How we build pipeline, not lead volume.",
    capabilitiesIntro:
      "Five disciplines, run against one definition of success: qualified pipeline at a CAC the business can afford.",
    faqTitle: "SaaS growth marketing questions.",
  },
  ecommerce: {
    crumb: "E-commerce growth marketing",
    capabilitiesTitle: "How we grow revenue that holds its margin.",
    capabilitiesIntro:
      "Six disciplines, managed against blended efficiency and contribution margin rather than platform-reported returns.",
    faqTitle: "E-commerce growth marketing questions.",
  },
};
