import React from "react"; import { BoltIcon, SparklesIcon, ChartBarIcon, PhotoIcon, } from "@heroicons/react/24/outline"; import HeroSection from "../components/HeroSection"; import MetricsBar from "../components/MetricsBar"; import { heroMetrics, workflowSteps } from "../data/metrics"; import LogoCloud from "../components/LogoCloud"; import WorkflowSteps from "../components/WorkflowSteps"; import FeatureGrid from "../components/FeatureGrid"; import SectionHeading from "../components/SectionHeading"; import TestimonialSlider from "../components/TestimonialSlider"; import CTASection from "../components/CTASection"; const Home: React.FC = () => { return (
, link: { label: "See Planner", href: "/product#planner" }, }, { title: "Writer · AI content studio", description: "Generate briefs, long-form articles, and on-brand messaging with contextual SERP data, tone controls, and collaboration tools.", icon: , link: { label: "See Writer", href: "/product#writer" }, }, { title: "Thinker · Strategy OS", description: "Centralize prompts, author voices, and brand playbooks. Sync guidelines directly into every piece of content Igny8 creates.", icon: , link: { label: "See Thinker", href: "/product#thinker" }, }, { title: "Automation · Always-on execution", description: "Orchestrate keywords to ideas, tasks to content, and assets to WordPress in automated cycles—customized to your cadence.", icon: , link: { label: "See Automation", href: "/product#automation" }, }, ]} />
  • Real-time metrics on keyword additions, clusters formed, briefs generated, and content shipped.
  • Drill into automation logs to understand every AI action, approvals, and handoffs.
  • Export-ready visuals for leadership updates and client reporting.
Workflow overview

Automation snapshot

87 keywords → 63 briefs → 48 articles → 48 image sets generated this week.

{[ { title: "Deploy anywhere", description: "Publish directly to WordPress with Igny8 automations or export polished assets to CMS, docs, or project tools.", }, { title: "Collaborate cross-team", description: "Give SEO, content, and creative teams a shared workspace—complete with approvals, version history, and assignments.", }, { title: "Stay on-brand and compliant", description: "Govern prompts, author voices, and AI usage with centralized policies and audit-ready histories.", }, ].map((item, index) => { const gradients = [ "from-[#0693e3]/10 to-[#0472b8]/5", "from-[#0bbf87]/10 to-[#08966b]/5", "from-[#5d4ae3]/10 to-[#3a2f94]/5", ]; const borders = [ "border-[#0693e3]/30", "border-[#0bbf87]/30", "border-[#5d4ae3]/30", ]; return (

{item.title}

{item.description}

); })}
); }; export default Home;