import React from "react"; import SectionHeading from "../components/SectionHeading"; import CTASection from "../components/CTASection"; const articles = [ { title: "AI + SEO: Building topical authority at scale", description: "How Igny8 customers map thousands of keywords into authoritative clusters that rank faster.", date: "October 2025", }, { title: "Automating the content supply chain", description: "A playbook for connecting keyword research, briefs, writing, and imagery without human bottlenecks.", date: "September 2025", }, { title: "Measuring AI-generated content quality", description: "Frameworks for tracking performance, editorial standards, and compliance across large AI programs.", date: "August 2025", }, ]; const webinars = [ { title: "Building an automation-first content ops team", description: "Live strategy session with Igny8 specialists and customer panel.", date: "November 21, 2025", }, { title: "From keywords to conversions: dashboards that prove ROI", description: "Hands-on walkthrough of Igny8 dashboards and reporting exports.", date: "On-demand replay", }, ]; const Resources: React.FC = () => { return (
{articles.map((article) => (
{article.date}

{article.title}

{article.description}

Article cover placeholder (800×600) → /marketing/images/resource-hero.png
))}
{webinars.map((webinar) => (
{webinar.date}

{webinar.title}

{webinar.description}

))}
  • Help Center → `/help`
  • Documentation → `/help#docs`
  • API Reference → `/partners#api`

Join the Igny8 newsletter

Monthly insights on AI, SEO, and automation. No fluff—just tactical guidance and event invites.

); }; export default Resources;