Skip to content

Commit b258e00

Browse files
Update index.html
1 parent f5146de commit b258e00

1 file changed

Lines changed: 20 additions & 6 deletions

File tree

index.html

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,10 @@ <h1 class="mt-4 text-3xl font-semibold tracking-tight sm:text-4xl">
186186
other: {
187187
overview: "Other partners represent our specialized, Invite-Only tracks — including MSP, Technology Partner (ISV), OEM, and Distributor. These partners operate under the Premier tier but follow unique engagement models based on their motion (service delivery, integration, embedding, or aggregation). All follow Recast’s Band 1–3 Rules of Engagement for consistency, but their commercial structures are negotiated. They are strategically selected and managed directly by Recast’s Channel and Product teams.",
188188
partnerTypesDescs: [
189-
"Invite Only MSP – Delivers Recast-powered managed services (Premier tier).",
190-
"Technology Partner (ISV) – Integrates Recast APIs or builds complementary solutions.",
191-
"OEM Partner – Embeds Recast technology into their platform (white-label or co-sell).",
192-
"Distributor Partner – Aggregates Recast licensing and enables downstream partners."
189+
"Managed Service Providers (MSPs) are strategic delivery partners who package Recast’s technology into their own managed services — helping customers manage, secure, and optimize their IT environments more efficiently.\nMSPs think in monthly recurring revenue (MRR) — not annual contracts. They operate on predictable, consumption-based models and need software that scales with them, not against them. Recast fits perfectly into this model by being easy to deploy, multitenant, and designed for repeatable use across clients.\nRather than making margin on licenses, MSPs make money on the services they deliver around the software — configuration, automation, monitoring, and continuous management. Recast helps them improve their margins by reducing manual effort, increasing client coverage, and adding high-value capabilities they can bundle into existing service offerings.\nFor many MSPs, Recast also opens the door to application management as a service, expanding beyond traditional infrastructure or security management into new, higher-value revenue streams.\nMSP partners are a key part of Recast’s ecosystem — they scale our reach, drive recurring adoption, and deliver measurable customer outcomes every month.",
190+
"ISV partners are technology companies that package and resell Recast as part of their broader solution, creating a stronger combined offering for customers. These partners typically embed or align Recast’s capabilities with their own platform to enhance value, accelerate sales cycles, and simplify deployment for joint customers.\nBy partnering with Recast, ISVs can address more customer pain points, eliminate common objections around integration or workflow gaps, and bring a ready-to-deploy joint solution to market faster.\nISV partners typically co-sell and co-market with Recast — leveraging joint messaging, enablement, and go-to-market programs to expand reach, build credibility, and drive new revenue.\nTogether, we deliver a unified, higher-value solution that helps both companies win faster, sell more efficiently, and serve customers better.",
191+
"OEM partners are strategic technology companies that embed Recast’s capabilities directly into their own products or platforms to enhance functionality, performance, or customer experience. These relationships extend Recast’s reach to thousands of customers through the partner’s existing technology ecosystem.\nIn an OEM model, the partner licenses and integrates Recast technology under their own brand, delivering it as a seamless part of their broader solution. This creates a tightly coupled, scalable go-to-market motion where Recast’s value is distributed through a trusted, established platform — accelerating adoption and expanding market penetration.\nOEM partnerships are highly strategic and collaborative, often involving joint engineering, product roadmapping, and go-to-market alignment at both the technical and executive level.\nTogether, OEM partners and Recast bring enterprise-grade solutions to market faster, reduce deployment complexity for customers, and create durable, high-value revenue streams for both organizations.",
192+
"Distributors are territory-based partners with exclusive rights to represent and grow Recast within a defined region or market. They act as our local extension — managing partner recruitment, enablement, and demand generation to expand Recast’s reach and market share.\nThese partners typically maintain a network of resellers, MSPs, and system integrators in their region. They handle localized sales, billing, and first-line support, ensuring smooth customer engagement while helping Recast maintain brand and commercial consistency across markets.\nDistributors are responsible for developing regional pipeline, building and enabling sub-partners, and executing go-to-market plans aligned with Recast’s global objectives. They also collaborate with Recast on marketing, events, and regional channel strategy to ensure sustained partner and customer growth.\nThis model allows Recast to enter new markets efficiently, ensure local expertise, and scale faster through a trusted regional partner that’s fully invested in our success."
193193
],
194194
requirements: [
195195
"Invitation from Recast Channel Leadership",
@@ -219,7 +219,7 @@ <h1 class="mt-4 text-3xl font-semibold tracking-tight sm:text-4xl">
219219
};
220220
} else {
221221
const specific = STATE.model.other.partners.find(p => p.partnerType === type);
222-
const desc = STATE.model.other.partnerTypesDescs.find(d => d.includes(type === "MSP" ? "MSP" : type));
222+
const desc = STATE.model.other.partnerTypesDescs.find(d => d.includes(type === "MSP" ? "Managed Service Providers" : type === "Technology Partner (ISV)" ? "ISV partners" : type === "OEM Partner" ? "OEM partners" : "Distributors"));
223223
return {
224224
overview: STATE.model.other.overview + "\n\n" + desc,
225225
requirements: STATE.model.other.requirements,
@@ -317,10 +317,24 @@ <h1 class="mt-4 text-3xl font-semibold tracking-tight sm:text-4xl">
317317
`;
318318
}
319319
function renderOverview(overview) {
320+
let contentHtml = '';
321+
const paragraphs = overview.split('\n\n');
322+
paragraphs.forEach(para => {
323+
const lines = para.split('\n');
324+
if (lines.length > 1 && lines.every(line => line.startsWith('* '))) {
325+
contentHtml += '<ul class="list-disc pl-5 space-y-2 mt-2">';
326+
lines.forEach(line => {
327+
contentHtml += `<li class="text-[#4A5568]">${line.substring(2)}</li>`;
328+
});
329+
contentHtml += '</ul>';
330+
} else {
331+
contentHtml += `<p class="mt-2 text-[#4A5568]">${para.replace(/\n/g, '<br>')}</p>`;
332+
}
333+
});
320334
return `
321335
<div class="rounded-2xl border border-[#E2E8F0] bg-white p-5 shadow-md">
322336
<h3 class="text-lg font-semibold">Overview</h3>
323-
<p class="mt-2 text-[#4A5568] whitespace-pre-line">${overview}</p>
337+
${contentHtml}
324338
</div>
325339
`;
326340
}

0 commit comments

Comments
 (0)