import React from "react"; import { Link } from "react-router-dom"; import { RocketLaunchIcon, ChatBubbleLeftRightIcon, ArrowRightIcon, CheckCircleIcon, CodeBracketIcon, WrenchScrewdriverIcon, } from "@heroicons/react/24/outline"; const Partners: React.FC = () => { const renderCta = (cta: { label: string; href: string }, className: string) => { const isExternal = cta.href.startsWith("http"); if (isExternal) { return ( {cta.label} ); } return ( {cta.label} ); }; const tiers = [ { title: "Certified Agency", description: "For agencies delivering content services at scale", benefits: [ "Co-branded marketing assets and listing in partner directory", "Dedicated partner manager and quarterly business reviews", "Access to automation templates and think tank sessions", ], icon: CheckCircleIcon, iconColor: "from-[var(--igny8-blue)] to-[var(--igny8-blue-dark)]", }, { title: "Technology Partner", description: "For platforms building integrations with IGNY8", benefits: [ "API access, sandbox environments, and technical documentation", "Joint integration roadmap planning and go-to-market support", "Shared lead programs and launch promotion campaigns", ], icon: CodeBracketIcon, iconColor: "from-[var(--igny8-green)] to-[var(--igny8-green-dark)]", }, { title: "Affiliate & Advocate", description: "For individuals and teams referring IGNY8", benefits: [ "Performance-based revenue share with lifetime attribution", "Early access to new features and partner community channels", "Custom reporting dashboards to track referred accounts", ], icon: RocketLaunchIcon, iconColor: "from-[var(--igny8-amber)] to-[var(--igny8-amber-dark)]", }, ]; return (
{/* HERO SECTION */}
Partners

Grow faster together—build services and solutions on Igny8.

Join our partner ecosystem to co-create automations, deliver measurable results, and co-market AI-driven success stories.

{/* PARTNER TIERS */}
{tiers.map((tier, idx) => { const Icon = tier.icon; return (
Program

{tier.title}

{tier.description}

    {tier.benefits.map((benefit, benefitIdx) => { const dotColors = ["bg-[var(--igny8-blue)]", "bg-[var(--igny8-green)]", "bg-[var(--igny8-amber)]", "bg-[var(--igny8-purple)]"]; return (
  • {benefit}
  • ); })}
); })}
{/* API & INTEGRATIONS + PARTNER RESOURCES */}
{/* Left: API & Integrations */}
API & Integrations

Embed Igny8 intelligence into your workflows.

Use Igny8 APIs and webhooks to power your own products, analytics, or client portals. Automate keyword ingestion, content creation, asset delivery, and reporting.

API docs placeholder
{/* Right: Partner Resources */}

Partner resources

    {[ { text: "Sales playbooks, ROI calculators, and demo environments.", color: "bg-[var(--igny8-blue)]" }, { text: "Shared Slack channels with Igny8 product and marketing teams.", color: "bg-[var(--igny8-green)]" }, { text: "Quarterly partner labs to showcase launches and integrations.", color: "bg-[var(--igny8-amber)]" }, ].map((item, index) => (
  • {item.text}
  • ))}
{/* FINAL CTA */}
{/* Radial glow */}

Become an Igny8 partner.

Apply today to co-create automations, launch integrations, and grow with our shared go-to-market engine.

Apply now Download partner deck
); }; export default Partners;