import { PageContainer } from "@/components/shared/PageContainer"; import { SectionContainer } from "@/components/shared/SectionContainer"; import { SectionHeading } from "@/components/shared/SectionHeading"; import { engagementModels } from "@/data/site-content"; /** * EngagementModelsSection — the three ways enterprises work with Tenext. * * This slot held the template's SaaS pricing tiers. Tenext quotes * commercial terms per engagement, so no prices are published; each card * routes to the contact form instead. */ export function EngagementModelsSection() { return (
{engagementModels.map((model) => (

{model.name}

{model.summary}

    {model.includes.map((item) => (
  • {item}
  • ))}
Talk to an expert
))}
); }