import React from "react"; import { Link } from "react-router-dom"; import { RocketLaunchIcon, ChatBubbleLeftRightIcon, ArrowRightIcon, CheckCircleIcon, } from "@heroicons/react/24/outline"; import SEO from "../components/SEO"; import { getMetaTags } from "../config/metaTags"; import Button from "../../components/ui/button/Button"; const CaseStudies: 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 caseStudies = [ { company: "Lumen Publishing", headline: "From 40 to 220 articles/month with 3× SERP visibility.", metrics: [ { label: "Organic traffic", value: "+210%" }, { label: "Time-to-publish", value: "-58%" }, { label: "Cost per article", value: "-34%" }, ], summary: "Publisher running 6 niche brands used Igny8 to centralize research, briefs, and AI-assisted writing. Automation recipes ensured every keyword moved to published content with minimal handoff friction.", image: "case-lumen.png", iconColor: "from-[var(--color-primary)] to-[var(--color-primary-dark)]", }, { company: "Northbeam Digital", headline: "Agency tripled client output without adding headcount.", metrics: [ { label: "Client satisfaction", value: "98%" }, { label: "Deliverables/mo", value: "+175%" }, { label: "Margin lift", value: "+22%" }, ], summary: "Multi-client agency adopted Igny8 to standardize workflows, automate reporting, and launch custom Thinker playbooks. Teams now produce keyword research, content, and images for 20+ clients simultaneously.", image: "case-northbeam.png", iconColor: "from-[var(--color-success)] to-[var(--color-success-dark)]", }, { company: "Arcadia SaaS", headline: "In-house team built a 7-stage automation pipeline.", metrics: [ { label: "New keywords ranked", value: "1,040" }, { label: "Automation coverage", value: "82%" }, { label: "Time saved monthly", value: "120 hrs" }, ], summary: "Arcadia used Igny8 to align SEO, product marketing, and design. Thinker libraries ensured every asset matched product messaging; automation pushed approved content directly into WordPress and HubSpot.", image: "case-arcadia.png", iconColor: "from-[var(--color-purple)] to-[var(--color-purple-dark)]", }, ]; return ( <>
{/* HERO SECTION */}
Case Studies

Stories from teams automating their way to category leadership.

See how publishers, agencies, and SaaS companies transformed their SEO and content operations with Igny8.

{/* CASE STUDIES GRID */}
{caseStudies.map((cs, idx) => { const metricColors = [ { border: "border-gray-200", bg: "from-white to-gray-50/50", text: "text-[var(--color-primary)]" }, { border: "border-gray-200", bg: "from-white to-gray-50/50", text: "text-[var(--color-success)]" }, { border: "border-gray-200", bg: "from-white to-gray-50/50", text: "text-[var(--color-warning)]" }, ]; return (
{cs.company}

{cs.headline}

{cs.summary}

{cs.metrics.map((metric, metricIdx) => { const metricColor = metricColors[metricIdx % metricColors.length]; return (
{metric.value}
{metric.label}
); })}
{`${cs.company}
); })}
{/* RESULTS & ADVISORY BOARD */}

Results you can expect

    {[ { text: "30-60 day onboarding to deploy automation and Thinker governance.", color: "bg-[var(--color-primary)]" }, { text: "3-5× increase in content throughput without sacrificing editorial quality.", color: "bg-[var(--color-success)]" }, { text: "Clear ROI dashboards tying automation to revenue outcomes.", color: "bg-[var(--color-warning)]" }, ].map((item, index) => (
  • {item.text}
  • ))}

Customer advisory board

Igny8's roadmap is shaped by an active community of customer strategists, agency partners, and product marketers. Join and get early access to features, template libraries, and industry benchmarks.

{/* FINAL CTA */}
{/* Radial glow */}

Let's document your Igny8 success story next.

Share your goals and we'll map an automation blueprint specific to your team, then track and celebrate the wins together.

Book strategy session Download case study pack
); }; export default CaseStudies;