Rescan Report
Share Report
Copy Report Link
Rescan Report
Share Report
Copy Report Link
Export Report
48/100

OVERALL SCORE

Level 2, Agent-Limited

Priority improvements needed for AI agents
AIDiscoverability17%Agent Easeof Use23%Security& Trust40%GEO, AIO, AEO67%SEO92%Performance& Accessibility76%
  • AI Discoverability 17 out of 100
  • Agent Ease of Use 23 out of 100
  • Security & Trust 40 out of 100
  • GEO, AIO and AEO 67 out of 100
  • SEO 92 out of 100
  • Performance and Accessibility 76 out of 100

CAPTURED SCREENSHOT

Captured website desktop screenshot

What AI sees of your website

Animalz | Content Marketing Services for SaaS Companies favicon

Animalz | Content Marketing Services for SaaS Companies

Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.

Next step

Turn this report into a fix workflow

30 failed checks are ready to move into MCP or CLI remediation. Generate a repair prompt, connect the scanner to your coding agent, or open the integration docs before your next rescan.

Detailed report scores grouped by capability area
MetricScoreStatusPassedFailedWarningEvidence
AI Discoverability
17
Priority fix3200View details
Discoverability
14
Priority fix180View details
Content Readiness
33
Priority fix280View details
Bot Access Control
0
Priority fix040View details
Agent Ease of Use
23
Priority fix14263View details
API
0
Priority fix060View details
Auth
74
Needs work1040View details
MCP
13
Priority fix062View details
Skill Discovery
5
Priority fix0101View details
Agent Commerce
Not Applicable
Not Applicable400
GEO, AIO and AEO
67
Needs work5312View details
GEO Readiness
80
Mostly ready204
AIO Readiness
55
Needs work223View details
AEO Readiness
63
Needs work115View details
SEO
92
Strong1010View details
SEO
92
Strong1010View details
Security & Trust
40
Priority fix630View details
Security & Trust
40
Priority fix230View details
AI Training Exposure
Not Applicable
Not Applicable400
Performance and Accessibility
76
Mostly ready2233View details
Performance
68
Needs work1623View details
Accessibility
90
Strong610View details

Prioritized recommendations

Issues ranked by score impact

51 items need attention

Agent Ease of UseAPIEstablished

API Catalog

API Catalog failed at "Fetch API catalog".

50 Fail

Needs attention

API Catalog

Failed check
01

Issue

The API catalog endpoint did not return HTTP 2xx.

02

Why it matters

API catalogs help agents find service descriptions, documentation, and status resources without guessing API entry points.

Check name

API Catalog

Score

0/100

Status

fail

Category

API

Maturity

Established

Goal

Publish an API catalog for automated API discovery using RFC 9727.

Result

API Catalog failed at "Fetch API catalog".

Validation steps

  1. Fetch API catalog

    The API catalog endpoint did not return HTTP 2xx.

  2. Validate RFC 9727 linkset

    Response is not valid JSON.

  3. Fetch advertised API catalog targets

    API Catalog did not expose any same-origin hrefs to validate.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch API catalog",
      "status": "fail",
      "evidence": {
        "statusCode": 404,
        "contentType": "text/html; charset=utf-8"
      },
      "issue": "The API catalog endpoint did not return HTTP 2xx.",
      "howToFix": "Publish /.well-known/api-catalog."
    },
    {
      "id": "validate",
      "title": "Validate RFC 9727 linkset",
      "status": "fail",
      "evidence": {
        "valid": false,
        "compatibleContentType": false,
        "issue": "Response is not valid JSON.",
        "rawExcerpt": "<!doctype html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link rel=\"preload\" as=\"style\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><link rel=\"modulepreload\" as=\"script\" href=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\" /><link rel=\"stylesheet\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><script type=\"module\" src=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\"></script>\n  <title>404 Page Not Found - Animalz</title>\n<meta name=\"description\" content=\"Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.\" />"
      },
      "issue": "Response is not valid JSON.",
      "howToFix": "Use application/linkset+json with service-desc, service-doc, and status relations that each include href."
    },
    {
      "id": "target-validation",
      "title": "Fetch advertised API catalog targets",
      "status": "fail",
      "evidence": {
        "checked": [],
        "failures": [
          {
            "reason": "No same-origin API catalog hrefs were available to fetch."
          }
        ]
      },
      "issue": "API Catalog did not expose any same-origin hrefs to validate.",
      "howToFix": "Make each same-origin API catalog href reachable and serve the advertised media type."
    }
  ]
}

Agent Ease of UseAPIEstablished

OpenAPI discovery

OpenAPI discovery failed at "Find valid OpenAPI document".

50 Fail

Needs attention

OpenAPI discovery

Failed check
01

Issue

OpenAPI YAML document did not match the expected shape. Content-Type "text/html; charset=utf-8" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.

02

Why it matters

OpenAPI documents let agents understand available operations, schemas, authentication, and request formats before calling an API.

Check name

OpenAPI discovery

Score

0/100

Status

fail

Category

API

Maturity

Established

Goal

Publish a valid OpenAPI or Swagger document for API discovery.

Result

OpenAPI discovery failed at "Find valid OpenAPI document".

Validation steps

  1. Find valid OpenAPI document

    OpenAPI YAML document did not match the expected shape. Content-Type "text/html; charset=utf-8" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Find valid OpenAPI document",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/openapi.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "valid": false,
            "issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html; charset=utf-8\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
            "compatibleContentType": false,
            "format": "yaml",
            "version": "",
            "pathCount": 0,
            "operationCount": 0,
            "rawExcerpt": "<!doctype html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link rel=\"preload\" as=\"style\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><link rel=\"modulepreload\" as=\"script\" href=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\" /><link rel=\"stylesheet\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><script type=\"module\" src=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\"></script>\n  <title>404 Page Not Found - Animalz</title>\n<meta name=\"description\" content=\"Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.\" />"
          },
          {
            "path": "/openapi.yaml",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "valid": false,
            "issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html; charset=utf-8\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
            "compatibleContentType": false,
            "format": "yaml",
            "version": "",
            "pathCount": 0,
            "operationCount": 0,
            "rawExcerpt": "<!doctype html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link rel=\"preload\" as=\"style\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><link rel=\"modulepreload\" as=\"script\" href=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\" /><link rel=\"stylesheet\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><script type=\"module\" src=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\"></script>\n  <title>404 Page Not Found - Animalz</title>\n<meta name=\"description\" content=\"Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.\" />"
          },
          {
            "path": "/swagger.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "valid": false,
            "issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html; charset=utf-8\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
            "compatibleContentType": false,
            "format": "yaml",
            "version": "",
            "pathCount": 0,
            "operationCount": 0,
            "rawExcerpt": "<!doctype html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link rel=\"preload\" as=\"style\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><link rel=\"modulepreload\" as=\"script\" href=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\" /><link rel=\"stylesheet\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><script type=\"module\" src=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\"></script>\n  <title>404 Page Not Found - Animalz</title>\n<meta name=\"description\" content=\"Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.\" />"
          },
          {
            "path": "/swagger.yaml",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "valid": false,
            "issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html; charset=utf-8\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
            "compatibleContentType": false,
            "format": "yaml",
            "version": "",
            "pathCount": 0,
            "operationCount": 0,
            "rawExcerpt": "<!doctype html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link rel=\"preload\" as=\"style\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><link rel=\"modulepreload\" as=\"script\" href=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\" /><link rel=\"stylesheet\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><script type=\"module\" src=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\"></script>\n  <title>404 Page Not Found - Animalz</title>\n<meta name=\"description\" content=\"Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.\" />"
          },
          {
            "path": "/api/openapi.json",
            "statusCode": 404,
            "contentType": "application/json",
            "valid": false,
            "issue": "OpenAPI JSON document did not match the expected shape. unsupported version: ; missing info.title; missing info.version; no paths defined; no operations defined.",
            "compatibleContentType": true,
            "format": "json",
            "version": "",
            "pathCount": 0,
            "operationCount": 0,
            "operationWarnings": [
              {
                "field": "servers",
                "issue": "No servers array declared."
              },
              {
                "field": "components.securitySchemes",
                "issue": "No security schemes or explicit no-auth declaration."
              }
            ],
            "hasServers": false,
            "hasSecuritySchemes": false,
            "hasExplicitNoAuth": false,
            "rawExcerpt": "{\"message\":\"Not found.\"}"
          },
          {
            "path": "/api/swagger.json",
            "statusCode": 404,
            "contentType": "application/json",
            "valid": false,
            "issue": "OpenAPI JSON document did not match the expected shape. unsupported version: ; missing info.title; missing info.version; no paths defined; no operations defined.",
            "compatibleContentType": true,
            "format": "json",
            "version": "",
            "pathCount": 0,
            "operationCount": 0,
            "operationWarnings": [
              {
                "field": "servers",
                "issue": "No servers array declared."
              },
              {
                "field": "components.securitySchemes",
                "issue": "No security schemes or explicit no-auth declaration."
              }
            ],
            "hasServers": false,
            "hasSecuritySchemes": false,
            "hasExplicitNoAuth": false,
            "rawExcerpt": "{\"message\":\"Not found.\"}"
          },
          {
            "path": "/docs/openapi.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "valid": false,
            "issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html; charset=utf-8\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
            "compatibleContentType": false,
            "format": "yaml",
            "version": "",
            "pathCount": 0,
            "operationCount": 0,
            "rawExcerpt": "<!doctype html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link rel=\"preload\" as=\"style\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><link rel=\"modulepreload\" as=\"script\" href=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\" /><link rel=\"stylesheet\" href=\"https://www.animalz.co/build/assets/site-Co0C7W9H.css\" /><script type=\"module\" src=\"https://www.animalz.co/build/assets/site-B9qDsORP.js\"></script>\n  <title>404 Page Not Found - Animalz</title>\n<meta name=\"description\" content=\"Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.\" />"
          }
        ]
      },
      "issue": "OpenAPI YAML document did not match the expected shape. Content-Type \"text/html; charset=utf-8\" is not a recognized type; unsupported version: ; missing info block with title and version; missing paths block; no operations found.",
      "howToFix": "Publish a valid OpenAPI 3.x or Swagger 2.0 JSON/YAML document with info, paths, operations, and responses."
    }
  ]
}

AI DiscoverabilityBot Access ControlEstablished

AI bot rules in robots.txt

AI bot rules in robots.txt is missing or incomplete.

33 Fail

Needs attention

AI bot rules in robots.txt

Failed check
01

Issue

No specific User-agent rules found for major AI crawlers (GPTBot, ClaudeBot, etc.) in robots.txt.

02

Why it matters

Explicit AI bot rules reduce ambiguity for crawler operators and make training, indexing, or retrieval access policy auditable.

Check name

AI bot rules in robots.txt

Score

0/100

Status

fail

Category

Bot Access Control

Maturity

Established

Goal

Add User-agent rules for AI crawlers like GPTBot, Claude-Web, and others.

Result

AI bot rules in robots.txt is missing or incomplete.

Evidence
{
  "expectedBots": [
    "GPTBot",
    "ChatGPT-User",
    "ClaudeBot",
    "Claude-Web",
    "Anthropic-AI",
    "Google-Extended",
    "PerplexityBot",
    "CCBot",
    "Applebot-Extended",
    "Meta-ExternalAgent",
    "Bytespider",
    "Amazonbot",
    "Cohere-AI"
  ],
  "configuredBots": []
}

AI DiscoverabilityBot Access ControlInformational

Content Signal

Content Signal is missing or incomplete.

33 Fail

Needs attention

Content Signal

Failed check
01

Issue

No Content Signal found in robots.txt

02

Why it matters

Content Signal provides a machine-readable way to communicate AI usage preferences where participating crawlers look for policy.

Check name

Content Signal

Score

0/100

Status

fail

Category

Bot Access Control

Maturity

Informational

Goal

Declare AI content usage preferences with Content Signal in robots.txt.

Result

Content Signal is missing or incomplete.

Evidence
{
  "signals": [],
  "ai-train": false,
  "search": false,
  "ai-input": false
}

Security & TrustSecurity & TrustEstablished

Content-Security-Policy

Content-Security-Policy is missing or incomplete.

33 Fail

Needs attention

Content-Security-Policy

Failed check
01

Issue

Content-Security-Policy is missing or incomplete.

02

Why it matters

Content Security Policy limits where scripts, styles, frames, and connections can load from, reducing the impact of injection bugs.

Check name

Content-Security-Policy

Score

0/100

Status

fail

Category

Security & Trust

Maturity

Established

Goal

Constrain script, style, frame, and resource loading with a Content-Security-Policy header.

Result

Content-Security-Policy is missing or incomplete.

Evidence
{
  "header": "content-security-policy",
  "value": null
}

Security & TrustSecurity & TrustEstablished

HSTS header

HSTS header is missing or incomplete.

33 Fail

Needs attention

HSTS header

Failed check
01

Issue

HSTS header is missing or incomplete.

02

Why it matters

HSTS tells browsers to keep using HTTPS after the first secure visit, reducing downgrade and mixed-transport risk for repeat users.

Check name

HSTS header

Score

0/100

Status

fail

Category

Security & Trust

Maturity

Established

Goal

Require HTTPS for repeat visits with Strict-Transport-Security.

Result

HSTS header is missing or incomplete.

Evidence
{
  "header": "strict-transport-security",
  "value": null
}

Security & TrustSecurity & TrustEstablished

Referrer-Policy

Referrer-Policy is missing or incomplete.

33 Fail

Needs attention

Referrer-Policy

Failed check
01

Issue

Referrer-Policy is missing or incomplete.

02

Why it matters

Referrer-Policy controls how much URL context is sent to other origins, limiting accidental leakage of paths, queries, and identifiers.

Check name

Referrer-Policy

Score

0/100

Status

fail

Category

Security & Trust

Maturity

Established

Goal

Limit how much referrer data leaves the site.

Result

Referrer-Policy is missing or incomplete.

Evidence
{
  "header": "referrer-policy",
  "value": null
}

AI DiscoverabilityBot Access ControlInformational

Web Bot Auth request signing

Web Bot Auth request signing failed at "Fetch to find resource".

33 Fail

Needs attention

Web Bot Auth request signing

Failed check
01

Issue

Web Bot Auth request signing was not found at the expected path.

02

Why it matters

Web Bot Auth discovery lets servers and clients find signing keys for bot identity workflows based on HTTP Message Signatures.

Check name

Web Bot Auth request signing

Score

0/100

Status

fail

Category

Bot Access Control

Maturity

Informational

Goal

Advertise HTTP Message Signatures keys when this site operates signed bot clients or supports Web Bot Auth workflows.

Result

Web Bot Auth request signing failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    Web Bot Auth request signing was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/.well-known/http-message-signatures-directory",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43817
          }
        ]
      },
      "issue": "Web Bot Auth request signing was not found at the expected path.",
      "howToFix": "If publishing Web Bot Auth keys, return a JSON key directory with a non-empty keys array and the draft media type."
    }
  ]
}

AI DiscoverabilityContent ReadinessEstablished

Content freshness signals

Content freshness signals is missing or incomplete.

25 Fail

Needs attention

Content freshness signals

Failed check
01

Issue

Content freshness signals are incomplete: missing Last-Modified HTTP header; missing dateModified/datePublished in JSON-LD; missing meta or <time> freshness tags.

02

Why it matters

Freshness signals help agents decide whether content is current enough to cite, summarize, or compare against newer sources.

Check name

Content freshness signals

Score

0/100

Status

fail

Category

Content Readiness

Maturity

Established

Goal

Expose modified and published dates for freshness-aware retrieval and ranking.

Result

Content freshness signals is missing or incomplete.

Evidence
{
  "lastModified": null,
  "schemaDates": [],
  "metaDateCount": 0,
  "timeDateCount": 0
}

AI DiscoverabilityContent ReadinessEmerging recommendation

llms.txt

llms.txt failed at "Fetch to find resource".

25 Fail

Needs attention

llms.txt

Failed check
01

Issue

llms.txt was not found at the expected path.

02

Why it matters

llms.txt gives language-model clients a concise, curated summary of important site context and links before they crawl broadly.

Check name

llms.txt

Score

0/100

Status

fail

Category

Content Readiness

Maturity

Emerging recommendation

Goal

Publish llms.txt to summarize agent-readable site guidance.

Result

llms.txt failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    llms.txt was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/llms.txt",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43743
          },
          {
            "path": "/llms-full.txt",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43753
          }
        ]
      },
      "issue": "llms.txt was not found at the expected path.",
      "howToFix": "Publish /llms.txt as Markdown with a clear title, concise site summary, and useful links for agents."
    }
  ]
}

AI DiscoverabilityContent ReadinessEstablished

Markdown negotiation

Markdown negotiation failed at "Markdown content type".

25 Fail

Needs attention

Markdown negotiation

Failed check
01

Issue

Content-Type "text/html; charset=utf-8" does not indicate Markdown when requested with Accept: text/markdown.

02

Why it matters

Markdown negotiation gives agents a cleaner representation of page content while preserving normal HTML for browsers.

Check name

Markdown negotiation

Score

0/100

Status

fail

Category

Content Readiness

Maturity

Established

Goal

Return HTML responses as markdown when agents request it.

Result

Markdown negotiation failed at "Markdown content type".

Validation steps

  1. Markdown content type

    Content-Type "text/html; charset=utf-8" does not indicate Markdown when requested with Accept: text/markdown.

  2. Vary: Accept header

    Markdown negotiation is missing Vary: Accept; current Vary header is "Accept-Encoding".

  3. Structured Markdown body

    Markdown response is missing a heading.

Evidence
{
  "failedStep": "content-type",
  "steps": [
    {
      "id": "content-type",
      "title": "Markdown content type",
      "status": "fail",
      "evidence": {
        "statusCode": 200,
        "contentType": "text/html; charset=utf-8"
      },
      "issue": "Content-Type \"text/html; charset=utf-8\" does not indicate Markdown when requested with Accept: text/markdown.",
      "howToFix": "Return Content-Type: text/markdown; charset=utf-8 for requests with Accept: text/markdown."
    },
    {
      "id": "vary-accept",
      "title": "Vary: Accept header",
      "status": "fail",
      "evidence": {
        "vary": "Accept-Encoding"
      },
      "issue": "Markdown negotiation is missing Vary: Accept; current Vary header is \"Accept-Encoding\".",
      "howToFix": "Add Vary: Accept on negotiated Markdown responses so shared caches keep HTML and Markdown variants separate."
    },
    {
      "id": "markdown-content",
      "title": "Structured Markdown body",
      "status": "fail",
      "evidence": {
        "valid": false,
        "hasHeading": false,
        "wordCount": 15578,
        "excerpt": "<!doctype html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link rel=\"preload\" as=\"style\" href=\"https://w",
        "issue": "Markdown response is missing a heading."
      },
      "issue": "Markdown response is missing a heading.",
      "howToFix": "Return Markdown with at least one heading and substantive page content, including useful links or instructions for agents."
    }
  ]
}

Agent Ease of UseMCPEmerging recommendation

MCP Server Card

MCP Server Card failed at "Fetch to find resource".

25 Fail

Needs attention

MCP Server Card

Failed check
01

Issue

MCP Server Card was not found at the expected path.

02

Why it matters

MCP Server Cards help agents discover server transports, capabilities, and protocol details before opening an MCP session.

Check name

MCP Server Card

Score

0/100

Status

fail

Category

MCP

Maturity

Emerging recommendation

Goal

Publish an MCP Server Card for agent discovery.

Result

MCP Server Card failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    MCP Server Card was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/.well-known/mcp/server-card.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43791
          },
          {
            "path": "/.well-known/mcp/server-cards.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43793
          },
          {
            "path": "/.well-known/mcp.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43767
          }
        ]
      },
      "issue": "MCP Server Card was not found at the expected path.",
      "howToFix": "Publish an MCP server card with valid transports and make each advertised local endpoint answer an MCP initialize request."
    }
  ]
}

Agent Ease of UseMCPEmerging recommendation

mcp.json

mcp.json failed at "Fetch to find resource".

25 Fail

Needs attention

mcp.json

Failed check
01

Issue

mcp.json was not found at the expected path.

02

Why it matters

MCP clients need trustworthy server metadata, protocol version, transport details, and capability hints before connecting to a remote MCP server.

Check name

mcp.json

Score

0/100

Status

fail

Category

MCP

Maturity

Emerging recommendation

Goal

Expose a stable MCP server metadata document that points agents to the site's MCP endpoint.

Result

mcp.json failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    mcp.json was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/mcp.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43743
          },
          {
            "path": "/.well-known/mcp.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43767
          },
          {
            "path": "/.well-known/mcp/server-card.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43791
          }
        ]
      },
      "issue": "mcp.json was not found at the expected path.",
      "howToFix": "Publish mcp.json or an MCP server card with serverInfo, protocolVersion, transport endpoint, and capabilities."
    }
  ]
}

AI DiscoverabilityContent ReadinessEstablished

Semantic HTML

Semantic HTML is missing or incomplete.

25 Fail

Needs attention

Semantic HTML

Failed check
01

Issue

Semantic HTML is incomplete: skipped heading levels; 2 buttons missing accessible names; 1/6 applicable form inputs have autocomplete attributes (5 missing).

Details

02

Why it matters

Semantic HTML gives browsers, assistive technology, search systems, and agents reliable landmarks, headings, controls, form semantics, and image context.

Check name

Semantic HTML

Score

0/100

Status

fail

Category

Content Readiness

Maturity

Established

Goal

Expose readable page structure through semantic HTML and accessible controls.

Result

Semantic HTML is missing or incomplete.

Evidence
{
  "main": true,
  "nav": true,
  "footer": true,
  "meaningfulH1": true,
  "headingOrder": false,
  "accessibleLinks": true,
  "accessibleButtons": false,
  "imageAltCoverage": true,
  "formAutocompleteCoverage": false,
  "details": {
    "inaccessibleLinks": [],
    "inaccessibleButtons": [
      "<button id=\"mobile-menu-toggle\" class=\"lg:hidden z-20 relative\"> <div class=\"w-6 h-5 flex items-center justify-center\"> <svg width=\"16\" height=\"14\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M0 0.142822H16V2.42854H0V0.142822ZM0 5.85711H16V8.14282H0V5.85711ZM16 11.5714V13.8571H0V11.5714H16Z\" fill=\"#272625\"/> </svg> </div> </button>",
      "<button id=\"mobile-menu-close\" class=\"bg-white p-4 rounded-md\"> <div class=\"text-purple-800\"> <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M14.2812 3.82812L10.1094 8L14.2812 12.2188L15.3594 13.25L13.25 15.4062L12.1719 14.3281L8 10.1562L3.78125 14.3281L2.75 15.4062L0.59375 13.25L1.67188 12.2188L5.84375 8L1.67188 3.82812L0.59375 2.75L2.75 0.640625L3.78125 1.71875L8 5.89062L12.1719 1.71875L13.25 0.640625L15.3594 2.75L14.2812 3.82812Z\" fill"
    ],
    "missingAutocompleteInputs": [
      "<input type=\"text\" id=\"firstName\" placeholder=\"First Name\" class=\"w-full pt-3 pb-2 px-4 rounded border-0 text-gray-800 bg-white\">",
      "<input type=\"text\" id=\"lastName\" placeholder=\"Last Name\" class=\"w-full pt-3 pb-2 px-4 rounded border-0 text-gray-800 bg-white\">",
      "<input type=\"email\" id=\"email\" placeholder=\"[email protected]\" class=\"w-full pt-3 pb-2 px-4 rounded border-0 text-gray-800 bg-white\">",
      "<input type=\"text\" id=\"company\" placeholder=\"Manor Farm\" class=\"w-full pt-3 pb-2 px-4 rounded border-0 text-gray-800 bg-white\">",
      "<input type=\"email\" name=\"email\" placeholder=\"Email Address\" class=\"w-full sm:w-1/2 px-4 pt-2 pb-1 rounded-md focus:outline-none focus:ring-2 focus:ring-purple-500 bg-white\" required>"
    ],
    "imagesMissingAlt": [],
    "skippedHeadingLevels": [
      "h1: Intelligent content for compounding growth",
      "h2: A Content Marketing and SEO Agency for Leading B2B SaaS Brands",
      "h2: Content so good it doesn't feel like marketing",
      "h4: $Millions in Pipeline",
      "h3: Be the thought leader",
      "h4: 5x Organic Traffic in 12 Months",
      "h3: Grow your presence in search & answer engines",
      "h4: 172% MQL Growth YoY",
      "h3: Scale your content production",
      "h2: Content marketing is evolving",
      "h3: The old way",
      "h3: The Animalz Way",
      "h2: What can you expect?",
      "h3: Build context",
      "h3: Formulate strategy",
      "h3: Craft quality content",
      "h3: Analyze performance",
      "h2: Content worth giving a hoot about",
      "h3: Claude Code for Content Marketers",
      "h3: Content Marketers Need to Learn to Pitch Again",
      "h3: Everybody Wants Thought Leadership Content. But How Do You...",
      "h2: Quit horsin' around– Let's chat!",
      "h3: Guides",
      "h3: Resources",
      "h3: Our Company"
    ]
  },
  "counts": {
    "h1": 1,
    "headings": 25,
    "links": 53,
    "inaccessibleLinks": 0,
    "buttons": 4,
    "inaccessibleButtons": 2,
    "images": 145,
    "imagesWithAlt": 145,
    "autocompleteInputs": 6,
    "inputsWithAutocomplete": 1,
    "missingAutocompleteInputs": 5
  }
}

Agent Ease of UseMCPInformational

WebMCP manifest

WebMCP manifest failed at "Fetch to find resource".

25 Fail

Needs attention

WebMCP manifest

Failed check
01

Issue

WebMCP manifest was not found at the expected path.

02

Why it matters

A WebMCP manifest advertises browser-exposed tools declaratively so agents can understand available site actions before invoking them.

Check name

WebMCP manifest

Score

0/100

Status

fail

Category

MCP

Maturity

Informational

Goal

Publish a WebMCP manifest for declarative browser tool discovery when using the draft manifest convention.

Result

WebMCP manifest failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    WebMCP manifest was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/.well-known/webmcp.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43773
          },
          {
            "path": "/webmcp.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43749
          },
          {
            "path": "/mcp.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43743
          }
        ]
      },
      "issue": "WebMCP manifest was not found at the expected path.",
      "howToFix": "Keep declarative WebMCP manifest discovery informational until the manifest shape stabilizes; validate tools if you publish one."
    }
  ]
}

Agent Ease of UseSkill DiscoveryEmerging recommendation

A2A Agent Card

A2A Agent Card failed at "Fetch to find resource".

20 Fail

Needs attention

A2A Agent Card

Failed check
01

Issue

A2A Agent Card was not found at the expected path.

02

Why it matters

A2A Agent Cards let compatible clients discover agent skills, input and output modes, and the endpoint used to invoke those skills.

Check name

A2A Agent Card

Score

0/100

Status

fail

Category

Skill Discovery

Maturity

Emerging recommendation

Goal

Publish an agent card so A2A-compatible clients can discover capabilities.

Result

A2A Agent Card failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    A2A Agent Card was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/.well-known/agent-card.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43781
          },
          {
            "path": "/.well-known/a2a/agent-card.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43789
          },
          {
            "path": "/agent-card.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43757
          }
        ]
      },
      "issue": "A2A Agent Card was not found at the expected path.",
      "howToFix": "Publish an A2A Agent Card with required skill details and make the advertised url answer A2A JSON-RPC requests."
    }
  ]
}

Agent Ease of UseSkill DiscoveryEmerging recommendation

Agent Skills index

Agent Skills index failed at "Fetch to find resource".

20 Fail

Needs attention

Agent Skills index

Failed check
01

Issue

Agent Skills index was not found at the expected path.

02

Why it matters

An Agent Skills index lets clients find task-specific SKILL.md documents that describe how to use site capabilities correctly.

Check name

Agent Skills index

Score

0/100

Status

fail

Category

Skill Discovery

Maturity

Emerging recommendation

Goal

Publish an agent skills discovery index.

Result

Agent Skills index failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    Agent Skills index was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/.well-known/agent-skills/index.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43797
          },
          {
            "path": "/.well-known/skills/index.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43785
          }
        ]
      },
      "issue": "Agent Skills index was not found at the expected path.",
      "howToFix": "Publish an index with a non-empty skills array and reachable SKILL.md URLs."
    }
  ]
}

Agent Ease of UseSkill DiscoveryEmerging recommendation

agent.json

agent.json failed at "Fetch to find resource".

20 Fail

Needs attention

agent.json

Failed check
01

Issue

agent.json was not found at the expected path.

02

Why it matters

agent.json is an emerging machine-readable manifest for declaring what a website does, how agents authenticate, and which actions or protocols are available.

Check name

agent.json

Score

0/100

Status

fail

Category

Skill Discovery

Maturity

Emerging recommendation

Goal

Publish the singular Agent Web Protocol agent.json manifest without confusing it with the separate agents.json directory convention.

Result

agent.json failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    agent.json was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/.well-known/agent.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43771
          },
          {
            "path": "/agent.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43747
          }
        ]
      },
      "issue": "agent.json was not found at the expected path.",
      "howToFix": "Publish agent.json with awp_version, domain, intent, and typed actions that point to real same-origin API or protocol endpoints."
    }
  ]
}

Agent Ease of UseSkill DiscoveryInformational

agents.json

agents.json failed at "Fetch to find resource".

20 Fail

Needs attention

agents.json

Failed check
01

Issue

agents.json was not found at the expected path.

02

Why it matters

agents.json gives clients a simple directory of agent-facing capabilities and contacts when a site chooses to advertise them.

Check name

agents.json

Score

0/100

Status

fail

Category

Skill Discovery

Maturity

Informational

Goal

Publish an agents.json directory for agent-facing capabilities and contacts when using this convention.

Result

agents.json failed at "Fetch to find resource".

Validation steps

  1. Fetch to find resource

    agents.json was not found at the expected path.

Evidence
{
  "failedStep": "fetch",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "fail",
      "evidence": {
        "checked": [
          {
            "path": "/.well-known/agents.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43773
          },
          {
            "path": "/agents.json",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43749
          }
        ]
      },
      "issue": "agents.json was not found at the expected path.",
      "howToFix": "If this site uses agents.json, publish JSON with an agents array containing name and url for each agent."
    }
  ]
}

AI DiscoverabilityDiscoverabilityEstablished

FAQPage schema

FAQPage schema is missing or incomplete.

17 Fail

Needs attention

FAQPage schema

Failed check
01

Issue

FAQ content was detected but no FAQPage schema was found.

02

Why it matters

FAQPage schema lets agents extract visible question-and-answer content cleanly and avoid guessing which text is an answer.

Check name

FAQPage schema

Score

0/100

Status

fail

Category

Discoverability

Maturity

Established

Goal

Expose question-and-answer content in FAQPage structured data when FAQs are present.

Result

FAQPage schema is missing or incomplete.

Evidence
{
  "found": false,
  "visibleFaq": true,
  "allTypes": []
}

AI DiscoverabilityDiscoverabilityEstablished

High-value schema types

High-value schema types is missing or incomplete.

17 Fail

Needs attention

High-value schema types

Failed check
01

Issue

No high-value schema types (e.g. Article, Product, Service) were found.

02

Why it matters

High-value schema types tell agents whether a page is an article, product, event, service, or other actionable content type.

Check name

High-value schema types

Score

0/100

Status

fail

Category

Discoverability

Maturity

Established

Goal

Use schema types that describe the page's primary content or offering.

Result

High-value schema types is missing or incomplete.

Evidence
{
  "found": [],
  "expected": [
    "Article",
    "BlogPosting",
    "NewsArticle",
    "Product",
    "SoftwareApplication",
    "FAQPage",
    "LocalBusiness",
    "VideoObject",
    "HowTo",
    "Event",
    "Course",
    "Review",
    "Service"
  ],
  "allTypes": []
}

AI DiscoverabilityDiscoverabilityEstablished

JSON-LD present

JSON-LD present is missing or incomplete.

17 Fail

Needs attention

JSON-LD present

Failed check
01

Issue

No JSON-LD blocks found.

02

Why it matters

JSON-LD is a low-friction structured data format that agents can extract without interpreting page presentation or microdata markup.

Check name

JSON-LD present

Score

0/100

Status

fail

Category

Discoverability

Maturity

Established

Goal

Expose schema.org JSON-LD so AI search systems can parse page entities.

Result

JSON-LD present is missing or incomplete.

Evidence
{
  "blocks": 0,
  "validBlocks": 0,
  "schemaContextBlocks": 0,
  "errors": [],
  "documents": [],
  "nodes": []
}

AI DiscoverabilityDiscoverabilityEstablished

Link headers

Link headers failed at "Find useful Link headers".

17 Fail

Needs attention

Link headers

Failed check
01

Issue

No useful agent discovery Link headers were found.

02

Why it matters

Link headers let automated clients discover API catalogs, documentation, and machine-readable alternates without parsing page markup first.

Check name

Link headers

Score

0/100

Status

fail

Category

Discoverability

Maturity

Established

Goal

Include Link response headers for agent discovery using RFC 8288.

Result

Link headers failed at "Find useful Link headers".

Validation steps

  1. Find useful Link headers

    No useful agent discovery Link headers were found.

  2. Fetch same-origin Link header targets

    Link headers did not expose any same-origin targets to validate.

Evidence
{
  "failedStep": "presence",
  "steps": [
    {
      "id": "presence",
      "title": "Find useful Link headers",
      "status": "fail",
      "evidence": {
        "links": []
      },
      "issue": "No useful agent discovery Link headers were found.",
      "howToFix": "Expose useful Link headers such as rel=\"api-catalog\", rel=\"service-doc\", and rel=\"service-desc\"."
    },
    {
      "id": "target-validation",
      "title": "Fetch same-origin Link header targets",
      "status": "fail",
      "evidence": {
        "checked": [],
        "failures": [
          {
            "reason": "No same-origin Link header targets were available to fetch."
          }
        ]
      },
      "issue": "Link headers did not expose any same-origin targets to validate.",
      "howToFix": "Make each same-origin Link href reachable and serve the advertised media type."
    }
  ]
}

AI DiscoverabilityDiscoverabilityEstablished

Organization / WebSite schema

Organization / WebSite schema is missing or incomplete.

17 Fail

Needs attention

Organization / WebSite schema

Failed check
01

Issue

Neither Organization nor WebSite schema types were found in JSON-LD.

02

Why it matters

Organization and WebSite schema help agents identify the publisher, canonical site identity, logo, and related profiles for attribution.

Check name

Organization / WebSite schema

Score

0/100

Status

fail

Category

Discoverability

Maturity

Established

Goal

Identify the site owner and website entity in structured data.

Result

Organization / WebSite schema is missing or incomplete.

Evidence
{
  "found": [],
  "allTypes": []
}

AI DiscoverabilityDiscoverabilityEstablished

Sitemap

Sitemap is missing or incomplete.

17 Fail

Needs attention

Sitemap

Failed check
01

Issue

No valid XML sitemap found at checked locations: https://www.animalz.co/sitemap.xml, https://www.animalz.co/sitemap_index.xml, https://www.animalz.co/sitemap-index.xml.

02

Why it matters

Sitemaps help crawlers and agents discover canonical URLs, updated pages, and deeper content that may not be obvious from the homepage navigation.

Check name

Sitemap

Score

0/100

Status

fail

Category

Discoverability

Maturity

Established

Goal

Publish a sitemap and reference it from robots.txt.

Result

Sitemap is missing or incomplete.

Evidence
{
  "checked": [
    "https://www.animalz.co/sitemap.xml",
    "https://www.animalz.co/sitemap_index.xml",
    "https://www.animalz.co/sitemap-index.xml"
  ]
}

Agent Ease of UseAuthEmerging recommendation

OAuth Protected Resource

OAuth Protected Resource failed at "Validate protected resource identity".

17 Fail

Needs attention

OAuth Protected Resource

Failed check
01

Issue

Protected resource metadata `resource` did not match the resource identifier used to retrieve it.

02

Why it matters

Protected Resource metadata tells agents which authorization servers protect an API and how to connect authentication challenges to the right resource.

Check name

OAuth Protected Resource

Score

67/100

Status

fail

Category

Auth

Maturity

Emerging recommendation

Goal

Publish OAuth Protected Resource Metadata so agents can discover how to authenticate.

Result

OAuth Protected Resource failed at "Validate protected resource identity".

Validation steps

  1. Validate protected resource identity

    Protected resource metadata `resource` did not match the resource identifier used to retrieve it.

  2. Probe protected API Bearer challenge

    No protected route with a 401 Bearer challenge was detected; metadata alone does not prove a protected resource.

Evidence
{
  "failedStep": "resource-identity",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch protected resource metadata",
      "status": "pass",
      "evidence": {
        "path": "/.well-known/oauth-protected-resource",
        "statusCode": 200,
        "contentType": "application/json"
      },
      "howToFix": "Publish /.well-known/oauth-protected-resource JSON."
    },
    {
      "id": "metadata",
      "title": "Validate protected resource metadata",
      "status": "pass",
      "evidence": {
        "valid": true,
        "compatibleContentType": true,
        "hasResource": true,
        "authorizationServerCount": 1,
        "resource": "https://www.animalz.co/mcp/statamic",
        "resourceIssues": [],
        "authServerIssues": [],
        "scopesSupported": [
          "*",
          "content:read",
          "content:write",
          "structures:read",
          "structures:write",
          "assets:read",
          "assets:write",
          "users:read",
          "users:write",
          "system:read",
          "system:write",
          "blueprints:read",
          "blueprints:write",
          "entries:read",
          "entries:write",
          "terms:read",
          "terms:write",
          "globals:read",
          "globals:write",
          "content-facade:read",
          "content-facade:write"
        ],
        "bearerMethodsSupported": [
          "header"
        ],
        "rawExcerpt": "{\"resource\":\"https:\\/\\/www.animalz.co\\/mcp\\/statamic\",\"authorization_servers\":[\"https:\\/\\/www.animalz.co\"],\"scopes_supported\":[\"*\",\"content:read\",\"content:write\",\"structures:read\",\"structures:write\",\"assets:read\",\"assets:write\",\"users:read\",\"users:write\",\"system:read\",\"system:write\",\"blueprints:read\",\"blueprints:write\",\"entries:read\",\"entries:write\",\"terms:read\",\"terms:write\",\"globals:read\",\"globals:write\",\"content-facade:read\",\"content-facade:write\"],\"bearer_methods_supported\":[\"header\"]}"
      },
      "howToFix": "Publish resource and authorization_servers as absolute URLs."
    },
    {
      "id": "resource-identity",
      "title": "Validate protected resource identity",
      "status": "fail",
      "evidence": {
        "resource": "https://www.animalz.co/mcp/statamic",
        "expectedResource": "https://www.animalz.co"
      },
      "issue": "Protected resource metadata `resource` did not match the resource identifier used to retrieve it.",
      "howToFix": "Set `resource` to the origin/resource identifier represented by /.well-known/oauth-protected-resource."
    },
    {
      "id": "protected-route-challenge",
      "title": "Probe protected API Bearer challenge",
      "status": "informational",
      "evidence": {
        "checked": [
          {
            "path": "/api/admin/scans",
            "statusCode": 404,
            "wwwAuthenticate": {
              "valid": false,
              "present": false
            },
            "expectedMetadataUrl": "https://www.animalz.co/.well-known/oauth-protected-resource",
            "metadataUrlMatches": true,
            "metadataResource": "https://www.animalz.co/mcp/statamic",
            "resourceMatchesRequestContext": false
          },
          {
            "path": "/api/admin/summary",
            "statusCode": 404,
            "wwwAuthenticate": {
              "valid": false,
              "present": false
            },
            "expectedMetadataUrl": "https://www.animalz.co/.well-known/oauth-protected-resource",
            "metadataUrlMatches": true,
            "metadataResource": "https://www.animalz.co/mcp/statamic",
            "resourceMatchesRequestContext": false
          },
          {
            "path": "/api/scans",
            "statusCode": 404,
            "wwwAuthenticate": {
              "valid": false,
              "present": false
            },
            "expectedMetadataUrl": "https://www.animalz.co/.well-known/oauth-protected-resource",
            "metadataUrlMatches": true,
            "metadataResource": "https://www.animalz.co/mcp/statamic",
            "resourceMatchesRequestContext": false
          }
        ]
      },
      "issue": "No protected route with a 401 Bearer challenge was detected; metadata alone does not prove a protected resource.",
      "howToFix": "When this site exposes bearer-protected APIs, return 401 with WWW-Authenticate: Bearer and link resource_metadata."
    }
  ],
  "authApplicability": {
    "supportsAuth": false,
    "score": 0,
    "signals": []
  },
  "resourceFetchSucceeded": true
}

Agent Ease of UseSkill DiscoveryEmerging recommendation

DNS-AID Agent Discovery

DNS-AID Agent Discovery failed at "Resolve DNS-AID SVCB/HTTPS records".

15 Fail

Needs attention

DNS-AID Agent Discovery

Failed check
01

Issue

No DNS-AID entrypoint records were found under _agents.

02

Why it matters

DNS-AID lets agents discover index, A2A, and other agent entrypoints before fetching HTTP metadata, while DNSSEC can authenticate the discovery zone.

Check name

DNS-AID Agent Discovery

Score

25/100

Status

fail

Category

Skill Discovery

Maturity

Emerging recommendation

Goal

Publish DNS for AI Discovery records under _agents for DNS-based agent entrypoint discovery.

Result

DNS-AID Agent Discovery failed at "Resolve DNS-AID SVCB/HTTPS records".

Validation steps

  1. Resolve DNS-AID SVCB/HTTPS records

    No DNS-AID entrypoint records were found under _agents.

  2. Validate alpn and endpoint parameters

    Include alpn and endpoint service parameters in each DNS-AID record so agents know the protocol and target entrypoint.

  3. Check DNSSEC material

    DNSSEC material was not visible for the hostname or parent zone from this resolver.

Evidence
{
  "failedStep": "svcb-https-records",
  "steps": [
    {
      "id": "svcb-https-records",
      "title": "Resolve DNS-AID SVCB/HTTPS records",
      "status": "fail",
      "evidence": {
        "hostname": "www.animalz.co",
        "probes": [
          {
            "name": "_index._agents.www.animalz.co",
            "found": false,
            "recordCount": 1,
            "records": [],
            "hasAlpn": false,
            "hasEndpoint": false
          },
          {
            "name": "_a2a._agents.www.animalz.co",
            "found": false,
            "recordCount": 1,
            "records": [],
            "hasAlpn": false,
            "hasEndpoint": false
          }
        ]
      },
      "issue": "No DNS-AID entrypoint records were found under _agents.",
      "howToFix": "Publish ServiceMode SVCB/HTTPS records such as _index._agents.example.com or _a2a._agents.example.com."
    },
    {
      "id": "service-params",
      "title": "Validate alpn and endpoint parameters",
      "status": "informational",
      "evidence": {
        "discovered": []
      },
      "howToFix": "Include alpn and endpoint service parameters in each DNS-AID record so agents know the protocol and target entrypoint."
    },
    {
      "id": "dnssec",
      "title": "Check DNSSEC material",
      "status": "warning",
      "evidence": {
        "hasDnssecMaterial": false,
        "checked": [
          {
            "name": "www.animalz.co",
            "dnssecTypes": [],
            "dnssecRecordCount": 0
          },
          {
            "name": "animalz.co",
            "dnssecTypes": [],
            "dnssecRecordCount": 0
          }
        ]
      },
      "issue": "DNSSEC material was not visible for the hostname or parent zone from this resolver.",
      "howToFix": "Sign the public discovery zone with DNSSEC so validating resolvers can return authenticated data."
    }
  ]
}

Agent Ease of UseMCPInformational

WebMCP

WebMCP has a validation warning at "Validate WebMCP declarative annotation quality".

13 Warning

Needs attention

WebMCP

Warning
01

Issue

WebMCP declarative annotations need fixes.

Details

02

Why it matters

WebMCP can expose page context and actions directly through the browser, giving agents safer structured hooks than screen scraping alone.

Check name

WebMCP

Score

50/100

Status

warning

Category

MCP

Maturity

Informational

Goal

Support WebMCP to expose site tools to AI agents via the browser.

Result

WebMCP has a validation warning at "Validate WebMCP declarative annotation quality".

Validation steps

  1. Detect data-mcp-tool annotations

    No data-mcp-tool attributes were found on interactive elements.

  2. Detect WebMCP declarative tags

    No elements found with tool-name or tool-description attributes.

  3. Validate WebMCP declarative annotation quality

    WebMCP declarative annotations need fixes.

    WebMCP declarative annotation issues
    • <input> is missing a name attribute.
    • <input> is missing tool-param-description.
    • <input> is missing a name attribute.
    • <input> is missing tool-param-description.
    • <input> is missing a name attribute.
    • <input> is missing tool-param-description.
    • <input> is missing a name attribute.
    • <input> is missing tool-param-description.
    • <select> is missing a name attribute.
    • <select> is missing tool-param-description.
    • <textarea> is missing a name attribute.
    • <textarea> is missing tool-param-description.
    • <input> is missing a name attribute.
    • <input> is missing tool-param-description.
    • <input name="email"> is missing a label.
    • <input name="email"> is missing tool-param-description.
    • <input name="website"> is missing a label.
    • <input name="website"> is missing tool-param-description.
  4. Detect WebMCP imperative API usage

    navigator.modelContext.provideContext(), navigator.modelContext.registerTool(), or other imperative signals were not detected in rendered browser state.

  5. Detect WebMCP browser navigator injection

    navigator.modelContext was not detected in the rendered browser page.

  6. Interactive surface coverage

    Only 0% of interactive surfaces are annotated.

Evidence
{
  "failedStep": "declarative-annotation-quality",
  "steps": [
    {
      "id": "data-mcp-tool-attributes",
      "title": "Detect data-mcp-tool annotations",
      "status": "informational",
      "evidence": {
        "dataMcpToolCount": 0,
        "dataMcpTools": []
      },
      "issue": "No data-mcp-tool attributes were found on interactive elements.",
      "howToFix": "Add data-mcp-tool attributes to high-value forms, buttons, and links so generic MCP-aware tooling can identify intended actions."
    },
    {
      "id": "declarative-tags",
      "title": "Detect WebMCP declarative tags",
      "status": "informational",
      "evidence": {
        "totalForms": 2,
        "formsWithTags": 0,
        "totalInteractive": 66,
        "interactiveWithTags": 0,
        "totalCount": 68,
        "taggedCount": 0,
        "dataMcpToolCount": 0,
        "dataMcpTools": [],
        "coverage": 0,
        "annotationIssues": [
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<select> is missing a name attribute.",
          "<select> is missing tool-param-description.",
          "<textarea> is missing a name attribute.",
          "<textarea> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input name=\"email\"> is missing a label.",
          "<input name=\"email\"> is missing tool-param-description.",
          "<input name=\"website\"> is missing a label.",
          "<input name=\"website\"> is missing tool-param-description."
        ]
      },
      "issue": "No elements found with tool-name or tool-description attributes.",
      "howToFix": "Add tool-name and tool-description attributes to forms and interactive elements."
    },
    {
      "id": "declarative-annotation-quality",
      "title": "Validate WebMCP declarative annotation quality",
      "status": "warning",
      "evidence": {
        "issueCount": 18,
        "issues": [
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<select> is missing a name attribute.",
          "<select> is missing tool-param-description.",
          "<textarea> is missing a name attribute.",
          "<textarea> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input name=\"email\"> is missing a label.",
          "<input name=\"email\"> is missing tool-param-description.",
          "<input name=\"website\"> is missing a label.",
          "<input name=\"website\"> is missing tool-param-description."
        ]
      },
      "issue": "WebMCP declarative annotations need fixes.",
      "issueDetails": [
        {
          "title": "WebMCP declarative annotation issues",
          "items": [
            {
              "type": "code",
              "value": "<input> is missing a name attribute."
            },
            {
              "type": "code",
              "value": "<input> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<input> is missing a name attribute."
            },
            {
              "type": "code",
              "value": "<input> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<input> is missing a name attribute."
            },
            {
              "type": "code",
              "value": "<input> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<input> is missing a name attribute."
            },
            {
              "type": "code",
              "value": "<input> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<select> is missing a name attribute."
            },
            {
              "type": "code",
              "value": "<select> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<textarea> is missing a name attribute."
            },
            {
              "type": "code",
              "value": "<textarea> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<input> is missing a name attribute."
            },
            {
              "type": "code",
              "value": "<input> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<input name=\"email\"> is missing a label."
            },
            {
              "type": "code",
              "value": "<input name=\"email\"> is missing tool-param-description."
            },
            {
              "type": "code",
              "value": "<input name=\"website\"> is missing a label."
            },
            {
              "type": "code",
              "value": "<input name=\"website\"> is missing tool-param-description."
            }
          ]
        }
      ],
      "howToFix": "Use snake_case tool-name values, descriptive tool-description values, named and labeled fields, and tool-param-description on inputs."
    },
    {
      "id": "imperative-api",
      "title": "Detect WebMCP imperative API usage",
      "status": "informational",
      "evidence": {
        "staticSignals": {
          "detected": false,
          "matched": []
        },
        "browser": {
          "checked": true,
          "detected": false,
          "hasNavigatorModelContext": false,
          "modelContextType": "undefined",
          "hasProvideContext": false,
          "hasRegisterTool": false
        }
      },
      "issue": "navigator.modelContext.provideContext(), navigator.modelContext.registerTool(), or other imperative signals were not detected in rendered browser state.",
      "howToFix": "Use navigator.modelContext.provideContext() to register tools programmatically."
    },
    {
      "id": "browser-navigator-injection",
      "title": "Detect WebMCP browser navigator injection",
      "status": "informational",
      "evidence": {
        "browser": {
          "checked": true,
          "detected": false,
          "hasNavigatorModelContext": false,
          "modelContextType": "undefined",
          "hasProvideContext": false,
          "hasRegisterTool": false
        }
      },
      "issue": "navigator.modelContext was not detected in the rendered browser page.",
      "howToFix": "Expose WebMCP through navigator.modelContext in the browser runtime when the page is intended to provide in-page tools."
    },
    {
      "id": "surface-coverage",
      "title": "Interactive surface coverage",
      "status": "informational",
      "evidence": {
        "totalForms": 2,
        "formsWithTags": 0,
        "totalInteractive": 66,
        "interactiveWithTags": 0,
        "totalCount": 68,
        "taggedCount": 0,
        "dataMcpToolCount": 0,
        "dataMcpTools": [],
        "coverage": 0,
        "annotationIssues": [
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<select> is missing a name attribute.",
          "<select> is missing tool-param-description.",
          "<textarea> is missing a name attribute.",
          "<textarea> is missing tool-param-description.",
          "<input> is missing a name attribute.",
          "<input> is missing tool-param-description.",
          "<input name=\"email\"> is missing a label.",
          "<input name=\"email\"> is missing tool-param-description.",
          "<input name=\"website\"> is missing a label.",
          "<input name=\"website\"> is missing tool-param-description."
        ]
      },
      "issue": "Only 0% of interactive surfaces are annotated.",
      "howToFix": "Add WebMCP annotations to all forms and interactive elements to increase agent coverage."
    }
  ],
  "staticSignals": {
    "detected": false,
    "matched": []
  },
  "coverage": {
    "totalForms": 2,
    "formsWithTags": 0,
    "totalInteractive": 66,
    "interactiveWithTags": 0,
    "totalCount": 68,
    "taggedCount": 0,
    "dataMcpToolCount": 0,
    "dataMcpTools": [],
    "coverage": 0,
    "annotationIssues": [
      "<input> is missing a name attribute.",
      "<input> is missing tool-param-description.",
      "<input> is missing a name attribute.",
      "<input> is missing tool-param-description.",
      "<input> is missing a name attribute.",
      "<input> is missing tool-param-description.",
      "<input> is missing a name attribute.",
      "<input> is missing tool-param-description.",
      "<select> is missing a name attribute.",
      "<select> is missing tool-param-description.",
      "<textarea> is missing a name attribute.",
      "<textarea> is missing tool-param-description.",
      "<input> is missing a name attribute.",
      "<input> is missing tool-param-description.",
      "<input name=\"email\"> is missing a label.",
      "<input name=\"email\"> is missing tool-param-description.",
      "<input name=\"website\"> is missing a label.",
      "<input name=\"website\"> is missing tool-param-description."
    ]
  },
  "browserWebMcp": {
    "checked": true,
    "detected": false,
    "hasNavigatorModelContext": false,
    "modelContextType": "undefined",
    "hasProvideContext": false,
    "hasRegisterTool": false
  }
}

Agent Ease of UseAuthEstablished

OAuth / OIDC discovery

OAuth / OIDC discovery failed at "Validate resource body".

10 Fail

Needs attention

OAuth / OIDC discovery

Failed check
01

Issue

OAuth Discovery response did not match the expected shape. missing: jwks_uri; endpoint issues: [{"field":"jwks_uri","issue":"Missing URL."}].

02

Why it matters

OAuth and OIDC discovery let agents find authorization, token, and key endpoints programmatically instead of relying on human documentation.

Check name

OAuth / OIDC discovery

Score

80/100

Status

fail

Category

Auth

Maturity

Established

Goal

Publish OAuth/OIDC discovery metadata so agents can authenticate with your APIs.

Result

OAuth / OIDC discovery failed at "Validate resource body".

Validation steps

  1. Validate resource body

    OAuth Discovery response did not match the expected shape. missing: jwks_uri; endpoint issues: [{"field":"jwks_uri","issue":"Missing URL."}].

Evidence
{
  "failedStep": "validate",
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch discovery resource",
      "status": "pass",
      "evidence": {
        "path": "/.well-known/oauth-authorization-server",
        "statusCode": 200,
        "contentType": "application/json"
      }
    },
    {
      "id": "validate",
      "title": "Validate resource body",
      "status": "fail",
      "evidence": {
        "valid": false,
        "issue": "OAuth Discovery response did not match the expected shape. missing: jwks_uri; endpoint issues: [{\"field\":\"jwks_uri\",\"issue\":\"Missing URL.\"}].",
        "compatibleContentType": true,
        "missing": [
          "jwks_uri"
        ],
        "endpointIssues": [
          {
            "field": "jwks_uri",
            "issue": "Missing URL."
          }
        ],
        "issuer": "https://www.animalz.co",
        "authorizationEndpoint": "https://www.animalz.co/cp/mcp/oauth/authorize",
        "tokenEndpoint": "https://www.animalz.co/mcp/oauth/token",
        "responseTypesSupported": [
          "code"
        ],
        "grantTypesSupported": [
          "authorization_code",
          "refresh_token"
        ],
        "idTokenSigningAlgValuesSupported": [],
        "rawExcerpt": "{\"issuer\":\"https:\\/\\/www.animalz.co\",\"authorization_endpoint\":\"https:\\/\\/www.animalz.co\\/cp\\/mcp\\/oauth\\/authorize\",\"token_endpoint\":\"https:\\/\\/www.animalz.co\\/mcp\\/oauth\\/token\",\"registration_endpoint\":\"https:\\/\\/www.animalz.co\\/mcp\\/oauth\\/register\",\"revocation_endpoint\":\"https:\\/\\/www.animalz.co\\/mcp\\/oauth\\/revoke\",\"scopes_supported\":[\"*\",\"content:read\",\"content:write\",\"structures:read\",\"structures:write\",\"assets:read\",\"assets:write\",\"users:read\",\"users:write\",\"system:read\",\"system:write\",\"blueprints:read\",\"blueprints:write\",\"entries:read\",\"entries:write\",\"terms:read\",\"terms:write\",\"globals:read\",\"globals:write\",\"content-facade:read\",\"content-facade:write\"],\"response_types_supported\":[\"code\"],\"grant_types_supported\":[\"authorization_code\",\"refresh_token\"],\"code_challenge_methods_support"
      },
      "issue": "OAuth Discovery response did not match the expected shape. missing: jwks_uri; endpoint issues: [{\"field\":\"jwks_uri\",\"issue\":\"Missing URL.\"}].",
      "howToFix": "Publish valid OAuth/OIDC metadata only when the site actually supports OAuth/OIDC. Otherwise omit provider discovery and document any unauthenticated public APIs separately."
    },
    {
      "id": "authorization-endpoint",
      "title": "Probe authorization endpoint with an authorization-code request",
      "status": "pass",
      "evidence": {
        "url": "https://www.animalz.co/cp/mcp/oauth/authorize?response_type=code&client_id=can-agent-use-scanner&redirect_uri=https%3A%2F%2Fcan-agent-use.invalid%2Foauth%2Fcallback&scope=openid&state=can-agent-use-probe",
        "method": "GET",
        "statusCode": 302,
        "location": "https://www.animalz.co/cp/auth/login",
        "contentType": "text/html; charset=utf-8",
        "excerpt": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"UTF-8\" />\n        <meta http-equiv=\"refresh\" content=\"0;url='https://www.animalz.co/cp/auth/login'\" />\n\n        <title>Redirecting to https://www.animalz.co/cp/auth/login</title>\n    </head>\n    <body>\n        Redirecting to <a href=\"https://w"
      },
      "howToFix": "Implement an authorization endpoint that can process syntactically valid authorization requests, or remove it from discovery metadata until it exists."
    },
    {
      "id": "authorization-redirect-safety",
      "title": "Reject unregistered authorization redirects",
      "status": "pass",
      "evidence": {
        "url": "https://www.animalz.co/cp/mcp/oauth/authorize?response_type=code&client_id=can-agent-use-unknown-client&redirect_uri=https%3A%2F%2Fcan-agent-use.invalid%2Fattacker-callback&scope=openid&state=can-agent-use-redirect-safety",
        "method": "GET",
        "statusCode": 302,
        "location": "https://www.animalz.co/cp/auth/login",
        "redirectedToUntrusted": false,
        "contentType": "text/html; charset=utf-8",
        "excerpt": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"UTF-8\" />\n        <meta http-equiv=\"refresh\" content=\"0;url='https://www.animalz.co/cp/auth/login'\" />\n\n        <title>Redirecting to https://www.animalz.co/cp/auth/login</title>\n    </head>\n    <body>\n        Redirecting to <a href=\"https://w"
      },
      "howToFix": "Validate client_id and registered redirect_uri values before redirecting. Return a direct OAuth error for invalid clients or redirect URIs."
    },
    {
      "id": "token-endpoint",
      "title": "Probe token endpoint with advertised grant type",
      "status": "pass",
      "evidence": {
        "url": "https://www.animalz.co/mcp/oauth/token",
        "method": "POST",
        "grantType": "authorization_code",
        "statusCode": 400,
        "oauthError": "invalid_request",
        "contentType": "application/json",
        "excerpt": "{\"error\":\"invalid_request\",\"error_description\":\"The code, redirect_uri, client_id, and code_verifier parameters are required.\"}"
      },
      "howToFix": "Support every advertised grant type enough to return a protocol-appropriate response, or stop advertising unsupported grants."
    }
  ],
  "authApplicability": {
    "supportsAuth": false,
    "score": 0,
    "signals": []
  },
  "resourceFetchSucceeded": true
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AIO: Visible structured data match

AIO: Visible structured data match scored 0/100 and needs a fix.

10 Fail

Needs attention

AIO: Visible structured data match

Failed check
01

Issue

No JSON-LD structured data was detected.

Details

02

Why it matters

AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.

Check name

AIO: Visible structured data match

Score

0/100

Status

fail

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content eligible and useful for Google AI Overviews and AI Mode extraction.

Result

AIO: Visible structured data match scored 0/100 and needs a fix.

Evidence
{
  "schemaCount": 0,
  "mismatches": [],
  "score": 0,
  "weight": 18
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AIO: Source and trust signals

AIO: Source and trust signals scored 20/100 and needs a fix.

9 Fail

Needs attention

AIO: Source and trust signals

Failed check
01

Issue

Missing AIO trust signals: author, publisher, freshnessDate, policyLinks.

Details

02

Why it matters

AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.

Check name

AIO: Source and trust signals

Score

20/100

Status

fail

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content eligible and useful for Google AI Overviews and AI Mode extraction.

Result

AIO: Source and trust signals scored 20/100 and needs a fix.

Evidence
{
  "signals": {
    "author": false,
    "publisher": false,
    "freshnessDate": false,
    "aboutOrContact": true,
    "policyLinks": false
  },
  "missing": [
    "author",
    "publisher",
    "freshnessDate",
    "policyLinks"
  ],
  "authorMeta": "",
  "schemaAuthors": [],
  "schemaPublishers": [],
  "schemaDates": [],
  "visibleDates": [],
  "aboutLinks": [
    {
      "href": "/about",
      "text": "About",
      "html": "<a href=\"/about\" class=\"block px-4 pt-3 pb-2 rounded-lg hover:bg-black/10 transition-all duration-200\">About</a>"
    },
    {
      "href": "/about",
      "text": "About",
      "html": "<a href=\"/about\" class=\"text-white font-heading hover:opacity-70 transition-opacity\">About</a>"
    },
    {
      "href": "/blog/thought-leadership-content",
      "text": "Strategy Everybody Wants Thought Leadership Content. But How Do You... Done right, thought leadership content is the single most brand-differentiating content marketing asset a company can produce. But it takes more than just having an opinion.You know when you see a... Katie Parrott • 22 min read 04/28/24",
      "html": "<a href=\"/blog/thought-leadership-content\" class=\"bg-white rounded-xl overflow-hidden flex-1 min-h-[300px] sm:min-h-[360px] lg:min-h-[320px] max-md:h-full flex flex-col outline-8 outline-transparent hover:outline-neutral-200 transition-all duration-200\"> <div> <div class=\"aspect-[16/9] overflow-hidden\"> <img src=\"/img/asset/YXNzZXRzLzIwMjAvMDcvdGhvdWdodC1sZWFkZXJzaGlwLWZlYXR1cmVkLWltYWdlLTEyMDAtVElOWS5qcGc/thought-leadership-featured-image-1200-TINY.jpg?w=1200&amp;h=675&amp;fit=crop&amp;s=5c8..."
    },
    {
      "href": "https://www.linkedin.com/company/animalz/",
      "text": "",
      "html": "<a href=\"https://www.linkedin.com/company/animalz/\" class=\"bg-neutral-200 rounded-md p-2\" aria-label=\"link\" target=\"_blank\" rel=\"noopener noreferrer\"> <img src=\"/assets/linkedin-in.svg\" class=\"w-5 h-5\" alt=\"link icon\"> </a>"
    },
    {
      "href": "/about",
      "text": "About",
      "html": "<a href=\"/about\" class=\"text-gray-700 hover:text-purple-600 transition-colors\">About</a>"
    }
  ],
  "contactLinks": [
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded-lg select-none font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl bg-[#9463EE] text-white hover:bg-violet-700 focus-visible:ring-violet-700 px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl\"> Let&apos;s talk <svg width=\"24\" height..."
    },
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded-lg select-none font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl border border-gray-200 bg-white hover:bg-gray-100 hover:text-gray-900 focus-visible:ring-gray-300 w-full text-[#6933CC]\"> Let&apos;s talk <svg width=\"24\" height=\"21\" viewBox..."
    },
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded-lg select-none font-heading transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-6 pt-3 pb-3 sm:px-8 sm:pt-4 sm:pb-3.5 text-2xl sm:text-3xl bg-[#9463EE] text-white hover:bg-violet-700 focus-visible:ring-violet-700 \"> Let&apos;s talk <svg width=\"32\" height=\"28\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://ww..."
    },
    {
      "href": "/blog/supportlogic-ai-proof-content-strategy",
      "text": "See their product-led SEO story",
      "html": "<a href=\"/blog/supportlogic-ai-proof-content-strategy\" class=\"flex flex-row gap-2 hover:gap-8 text-white transition-all duration-300 ease-in-out relative z-20\">See their product-led SEO story <div class=\"mt-1\"><svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.75 6.55094L8.25 11.8009C7.9375 12.0822 7.46875 12.0822 7.1875 11.7697C6.90625 11.4572 6.90625 10.9884 7.21875 10.7072L11.375 6.73844H0.75C0.3125 6.73844 0 6.42594 0 5.98844C0 5.5..."
    },
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded select-none font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl bg-[#9463EE] text-white hover:bg-violet-700 focus-visible:ring-violet-700 \"> Let&apos;s talk <svg width=\"24\" height=\"21\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.or..."
    },
    {
      "href": "/contact",
      "text": "Contact",
      "html": "<a href=\"/contact\" class=\"text-gray-700 hover:text-purple-600 transition-colors\">Contact</a>"
    }
  ],
  "privacyLinks": [],
  "score": 20,
  "weight": 20
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AEO: Answer evidence and trust

AEO: Answer evidence and trust scored 20/100 and needs a fix.

7 Fail

Needs attention

AEO: Answer evidence and trust

Failed check
01

Issue

Missing AIO trust signals: author, publisher, freshnessDate, policyLinks.

Details

02

Why it matters

Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.

Check name

AEO: Answer evidence and trust

Score

20/100

Status

fail

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for answer engines and assistants to answer from directly.

Result

AEO: Answer evidence and trust scored 20/100 and needs a fix.

Evidence
{
  "signals": {
    "author": false,
    "publisher": false,
    "freshnessDate": false,
    "aboutOrContact": true,
    "policyLinks": false
  },
  "missing": [
    "author",
    "publisher",
    "freshnessDate",
    "policyLinks"
  ],
  "authorMeta": "",
  "schemaAuthors": [],
  "schemaPublishers": [],
  "schemaDates": [],
  "visibleDates": [],
  "aboutLinks": [
    {
      "href": "/about",
      "text": "About",
      "html": "<a href=\"/about\" class=\"block px-4 pt-3 pb-2 rounded-lg hover:bg-black/10 transition-all duration-200\">About</a>"
    },
    {
      "href": "/about",
      "text": "About",
      "html": "<a href=\"/about\" class=\"text-white font-heading hover:opacity-70 transition-opacity\">About</a>"
    },
    {
      "href": "/blog/thought-leadership-content",
      "text": "Strategy Everybody Wants Thought Leadership Content. But How Do You... Done right, thought leadership content is the single most brand-differentiating content marketing asset a company can produce. But it takes more than just having an opinion.You know when you see a... Katie Parrott • 22 min read 04/28/24",
      "html": "<a href=\"/blog/thought-leadership-content\" class=\"bg-white rounded-xl overflow-hidden flex-1 min-h-[300px] sm:min-h-[360px] lg:min-h-[320px] max-md:h-full flex flex-col outline-8 outline-transparent hover:outline-neutral-200 transition-all duration-200\"> <div> <div class=\"aspect-[16/9] overflow-hidden\"> <img src=\"/img/asset/YXNzZXRzLzIwMjAvMDcvdGhvdWdodC1sZWFkZXJzaGlwLWZlYXR1cmVkLWltYWdlLTEyMDAtVElOWS5qcGc/thought-leadership-featured-image-1200-TINY.jpg?w=1200&amp;h=675&amp;fit=crop&amp;s=5c8..."
    },
    {
      "href": "https://www.linkedin.com/company/animalz/",
      "text": "",
      "html": "<a href=\"https://www.linkedin.com/company/animalz/\" class=\"bg-neutral-200 rounded-md p-2\" aria-label=\"link\" target=\"_blank\" rel=\"noopener noreferrer\"> <img src=\"/assets/linkedin-in.svg\" class=\"w-5 h-5\" alt=\"link icon\"> </a>"
    },
    {
      "href": "/about",
      "text": "About",
      "html": "<a href=\"/about\" class=\"text-gray-700 hover:text-purple-600 transition-colors\">About</a>"
    }
  ],
  "contactLinks": [
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded-lg select-none font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl bg-[#9463EE] text-white hover:bg-violet-700 focus-visible:ring-violet-700 px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl\"> Let&apos;s talk <svg width=\"24\" height..."
    },
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded-lg select-none font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl border border-gray-200 bg-white hover:bg-gray-100 hover:text-gray-900 focus-visible:ring-gray-300 w-full text-[#6933CC]\"> Let&apos;s talk <svg width=\"24\" height=\"21\" viewBox..."
    },
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded-lg select-none font-heading transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-6 pt-3 pb-3 sm:px-8 sm:pt-4 sm:pb-3.5 text-2xl sm:text-3xl bg-[#9463EE] text-white hover:bg-violet-700 focus-visible:ring-violet-700 \"> Let&apos;s talk <svg width=\"32\" height=\"28\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://ww..."
    },
    {
      "href": "/blog/supportlogic-ai-proof-content-strategy",
      "text": "See their product-led SEO story",
      "html": "<a href=\"/blog/supportlogic-ai-proof-content-strategy\" class=\"flex flex-row gap-2 hover:gap-8 text-white transition-all duration-300 ease-in-out relative z-20\">See their product-led SEO story <div class=\"mt-1\"><svg width=\"14\" height=\"12\" viewBox=\"0 0 14 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.75 6.55094L8.25 11.8009C7.9375 12.0822 7.46875 12.0822 7.1875 11.7697C6.90625 11.4572 6.90625 10.9884 7.21875 10.7072L11.375 6.73844H0.75C0.3125 6.73844 0 6.42594 0 5.98844C0 5.5..."
    },
    {
      "href": "/contact",
      "text": "Let's talk",
      "html": "<a href=\"/contact\" class=\"inline-flex items-center justify-center gap-4 cursor-pointer rounded select-none font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none px-4 pt-2 pb-1 sm:px-6 sm:pt-3 sm:pb-1 text-lg sm:text-2xl bg-[#9463EE] text-white hover:bg-violet-700 focus-visible:ring-violet-700 \"> Let&apos;s talk <svg width=\"24\" height=\"21\" viewBox=\"0 0 16 14\" fill=\"none\" xmlns=\"http://www.w3.or..."
    },
    {
      "href": "/contact",
      "text": "Contact",
      "html": "<a href=\"/contact\" class=\"text-gray-700 hover:text-purple-600 transition-colors\">Contact</a>"
    }
  ],
  "privacyLinks": [],
  "score": 20,
  "weight": 22
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

GEO: Extraction-friendly structure

GEO: Extraction-friendly structure scored 60/100 and needs improvement.

5 Warning

Needs attention

GEO: Extraction-friendly structure

Warning
01

Issue

Missing extraction signals: optional top summary / TL;DR / key takeaways block, table with <thead> only if the page already has tabular/comparative data, ordered list only if the page explains a workflow/process, optional visible FAQ or FAQPage schema, JSON-LD structured data.

Details

02

Why it matters

Generative engines favor pages with self-contained answer passages, clear entities, structured data, summaries, FAQ patterns, and crawler-accessible HTML that can be cited without extra interpretation.

Check name

GEO: Extraction-friendly structure

Score

60/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for AI answer engines to extract, cite, and attribute.

Result

GEO: Extraction-friendly structure scored 60/100 and needs improvement.

Evidence
{
  "hasSummary": false,
  "tableCount": 0,
  "tablesWithHead": 0,
  "tablesMissingThead": [],
  "orderedLists": 0,
  "hasFaq": false,
  "definitionPatterns": 2,
  "schemaBlocks": 0,
  "missingSignals": [
    "optional top summary / TL;DR / key takeaways block",
    "table with <thead> only if the page already has tabular/comparative data",
    "ordered list only if the page explains a workflow/process",
    "optional visible FAQ or FAQPage schema",
    "JSON-LD structured data"
  ],
  "score": 60,
  "weight": 24
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AEO: Answer-first sections

AEO: Answer-first sections scored 65/100 and needs improvement.

4 Warning

Needs attention

AEO: Answer-first sections

Warning
01

Issue

21 section(s) may benefit from a clearer opening answer; this is optional for feature/card sections.

Details

02

Why it matters

Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.

Check name

AEO: Answer-first sections

Score

65/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for answer engines and assistants to answer from directly.

Result

AEO: Answer-first sections scored 65/100 and needs improvement.

Evidence
{
  "sectionCount": 21,
  "passing": 0,
  "failing": [
    {
      "heading": "A Content Marketing and SEO Agency for Leading B2B SaaS Brands",
      "headingHtml": "<h2 class=\"text-center text-sm mb-8 uppercase tracking-wider text-neutral-500 cursor-default select-none\" id=\"a-content-marketing-and-seo-agency-for-leading-b2b-saas-brands\">A Content Marketing and SEO Agency for Leading B2B SaaS Brands</h2>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Content so good it doesn't feel like marketing",
      "headingHtml": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-so-good-it-doesnt-feel-like-marketing\">Content <em>so good</em> it doesn&apos;t feel like marketing</h2>",
      "firstParagraph": "Our programs combine proprietary research, proven playbooks, and AI workflows to drive organic growth.",
      "paragraphHtml": "<p>Our programs combine proprietary research, proven playbooks, and AI workflows to drive organic growth.</p>",
      "words": 14,
      "direct": false,
      "issue": "First paragraph is 14 words and does not look like a concise direct answer."
    },
    {
      "heading": "Be the thought leader",
      "headingHtml": "<h3 class=\"font-heading text-3xl md:text-4xl lg:text-6xl lg:tracking-tight mt-3\" id=\"be-the-thought-leader\">Be the thought leader </h3>",
      "firstParagraph": "Distribute perspectives that attract the right audience and deliver pipeline. Pair us with your experts or leave the research to us.",
      "paragraphHtml": "<p class=\"mt-6 md:mt-12 text-lg md:text-xl\">Distribute perspectives that attract the right audience and deliver pipeline. Pair us with your experts or leave the research to us.</p>",
      "words": 21,
      "direct": false,
      "issue": "First paragraph is 21 words and does not look like a concise direct answer."
    },
    {
      "heading": "Grow your presence in search & answer engines",
      "headingHtml": "<h3 class=\"font-heading text-3xl md:text-4xl lg:text-6xl lg:tracking-tight mt-3\" id=\"grow-your-presence-in-search-answer-engines\">Grow your presence in search &amp; answer engines </h3>",
      "firstParagraph": "Get sustainable ROI with a conversion-focused, AI-enabled, thoroughly measured SEO / AEO (Answer Engine Optimization) program.",
      "paragraphHtml": "<p class=\"mt-6 md:mt-12 text-lg md:text-xl\">Get sustainable ROI with a conversion-focused, AI-enabled, thoroughly measured SEO / AEO (Answer Engine Optimization) program.&#xa0;</p>",
      "words": 15,
      "direct": false,
      "issue": "First paragraph is 15 words and does not look like a concise direct answer."
    },
    {
      "heading": "Scale your content production",
      "headingHtml": "<h3 class=\"font-heading text-3xl md:text-4xl lg:text-6xl lg:tracking-tight mt-3\" id=\"scale-your-content-production\">Scale your content production </h3>",
      "firstParagraph": "Extend your team with content experts. We learn your product, industry, and go-to-market motion to produce quality content and provide supplementary strategic support.",
      "paragraphHtml": "<p class=\"mt-6 md:mt-12 text-lg md:text-xl\">Extend your team with content experts. We learn your product, industry, and go-to-market motion to produce quality content and provide supplementary strategic support.</p>",
      "words": 23,
      "direct": false,
      "issue": "First paragraph is 23 words and does not look like a concise direct answer."
    },
    {
      "heading": "Content marketing is evolving",
      "headingHtml": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-marketing-is-evolving\">Content marketing is evolving</h2>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "The old way",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl lg:tracking-tight\" id=\"the-old-way\">The old way</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "The Animalz Way",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl lg:tracking-tight\" id=\"the-animalz-way\">The Animalz Way</h3>",
      "firstParagraph": "Our Process",
      "paragraphHtml": "<p class=\"uppercase text-sm text-gray-400 tracking-wide\">Our Process</p>",
      "words": 2,
      "direct": false,
      "issue": "First paragraph is 2 words and does not look like a concise direct answer."
    },
    {
      "heading": "What can you expect?",
      "headingHtml": "<h2 class=\"font-heading text-4xl md:text-5xl lg:text-7xl lg:tracking-tight leading-[0.8] mt-6\" id=\"what-can-you-expect\">What can you expect?</h2>",
      "firstParagraph": "Need more details? We’re happy to work through them together.",
      "paragraphHtml": "<p class=\"mt-8 md:mt-10 text-xl md:text-2xl lg:text-3xl text-neutral-700 leading-snug\">Need more details? We&#x2019;re happy to work through them together.</p>",
      "words": 11,
      "direct": false,
      "issue": "First paragraph is 11 words and does not look like a concise direct answer."
    },
    {
      "heading": "Build context",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"build-context\">Build context</h3>",
      "firstParagraph": "We get to know you, your customers, product, industry, and GTM strategy—while you get to know our team and process.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> We get to know you, your customers, product, industry, and GTM strategy&#x2014;while you get to know our team and process.</p>",
      "words": 21,
      "direct": false,
      "issue": "First paragraph is 21 words and does not look like a concise direct answer."
    },
    {
      "heading": "Formulate strategy",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"formulate-strategy\">Formulate strategy</h3>",
      "firstParagraph": "We often—but not always—start with a tailored strategy built on your context, our proven playbooks, and mutual goals to deliver the right message through the right channels for measurable growth.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> We often&#x2014;but not always&#x2014;start with a tailored strategy built on your context, our proven playbooks, and mutual goals to deliver the right message through the right channels for measurable growth.</p>",
      "words": 32,
      "direct": false,
      "issue": "First paragraph is 32 words and does not look like a concise direct answer."
    },
    {
      "heading": "Craft quality content",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"craft-quality-content\">Craft quality content</h3>",
      "firstParagraph": "Quality isn’t accidental. It’s content purpose-built for your goals, informed by your industry’s realities, anchored in fresh thinking, and adapted for each channel’s unique audience.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> Quality isn&#x2019;t accidental. It&#x2019;s content purpose-built for your goals, informed by your industry&#x2019;s realities, anchored in fresh thinking, and adapted for each channel&#x2019;s unique audience.</p>",
      "words": 29,
      "direct": false,
      "issue": "First paragraph is 29 words and does not look like a concise direct answer."
    },
    {
      "heading": "Analyze performance",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"analyze-performance\">Analyze performance</h3>",
      "firstParagraph": "We set goals together, track progress with your customized dashboard, and analyze results monthly—continuously refining our approach to maximize your investment.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> We set goals together, track progress with your customized dashboard, and analyze results monthly&#x2014;continuously refining our approach to maximize your investment.</p>",
      "words": 22,
      "direct": false,
      "issue": "First paragraph is 22 words and does not look like a concise direct answer."
    },
    {
      "heading": "Content worth giving a hoot about",
      "headingHtml": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-worth-giving-a-hoot-about\">Content worth giving a hoot about</h2>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Claude Code for Content Marketers",
      "headingHtml": "<h3 class=\"text-[20px] text-gray-900 font-heading leading-tight\" id=\"claude-code-for-content-marketers\"> Claude Code for Content Marketers </h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Content Marketers Need to Learn to Pitch Again",
      "headingHtml": "<h3 class=\"text-[20px] text-gray-900 font-heading leading-tight\" id=\"content-marketers-need-to-learn-to-pitch-again\"> Content Marketers Need to Learn to Pitch Again </h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Everybody Wants Thought Leadership Content. But How Do You...",
      "headingHtml": "<h3 class=\"text-[20px] text-gray-900 font-heading leading-tight\" id=\"everybody-wants-thought-leadership-content-but-how-do-you\"> Everybody Wants Thought Leadership Content. But How Do You... </h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Quit horsin' around– Let's chat!",
      "headingHtml": "<h2 class=\"text-3xl md:text-5xl lg:text-6xl font-heading mb-4 md:mb-10\" id=\"quit-horsin-around-lets-chat\">Quit horsin&apos; around&#x2013;<br class=\"hidden lg:block\"> Let&apos;s chat!</h2>",
      "firstParagraph": "Book time on our calendar. We're all ears and happy to consult on your content needs.",
      "paragraphHtml": "<p class=\"text-lg md:text-xl mb-5 md:mb-8 lg:hidden\">Book time on our calendar. We&apos;re all ears and happy to consult on your content needs.</p>",
      "words": 16,
      "direct": false,
      "issue": "First paragraph is 16 words and does not look like a concise direct answer."
    },
    {
      "heading": "Guides",
      "headingHtml": "<h3 class=\"text-lg text-neutral-500 mb-6\" id=\"guides\">Guides</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Resources",
      "headingHtml": "<h3 class=\"text-lg text-neutral-500 mb-6\" id=\"resources\">Resources</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Our Company",
      "headingHtml": "<h3 class=\"text-lg text-neutral-500 mb-6\" id=\"our-company\">Our Company</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    }
  ],
  "score": 65,
  "weight": 28
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

GEO: Explanatory content depth

GEO: Explanatory content depth scored 75/100 and needs improvement.

2 Warning

Needs attention

GEO: Explanatory content depth

Warning
01

Issue

No substantial explanatory paragraphs were found.

Details

02

Why it matters

Generative engines favor pages with self-contained answer passages, clear entities, structured data, summaries, FAQ patterns, and crawler-accessible HTML that can be cited without extra interpretation.

Check name

GEO: Explanatory content depth

Score

75/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for AI answer engines to extract, cite, and attribute.

Result

GEO: Explanatory content depth scored 75/100 and needs improvement.

Evidence
{
  "candidatePassages": 1,
  "citablePassages": 0,
  "failingCandidateParagraphs": [],
  "citableParagraphs": [],
  "score": 75,
  "weight": 18
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AEO: Question-led structure

AEO: Question-led structure scored 70/100 and needs improvement.

2 Warning

Needs attention

AEO: Question-led structure

Warning
01

Issue

21 section(s) may benefit from a clearer opening answer; this is optional for feature/card sections.

02

Why it matters

Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.

Check name

AEO: Question-led structure

Score

70/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for answer engines and assistants to answer from directly.

Result

AEO: Question-led structure scored 70/100 and needs improvement.

Evidence
{
  "h2Count": 6,
  "questionH2s": [
    {
      "index": 4,
      "text": "What can you expect?",
      "isQuestion": true,
      "html": "<h2 class=\"font-heading text-4xl md:text-5xl lg:text-7xl lg:tracking-tight leading-[0.8] mt-6\" id=\"what-can-you-expect\">What can you expect?</h2>"
    }
  ],
  "hasFaq": false,
  "score": 70,
  "weight": 18
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

GEO: Entity clarity

GEO: Entity clarity scored 87/100 and needs improvement.

2 Warning

Needs attention

GEO: Entity clarity

Warning
01

Issue

Title/H1 terms missing from description: services, intelligent, compounding, growth.

Details

02

Why it matters

Generative engines favor pages with self-contained answer passages, clear entities, structured data, summaries, FAQ patterns, and crawler-accessible HTML that can be cited without extra interpretation.

Check name

GEO: Entity clarity

Score

87/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for AI answer engines to extract, cite, and attribute.

Result

GEO: Entity clarity scored 87/100 and needs improvement.

Evidence
{
  "title": "Animalz | Content Marketing Services for SaaS Companies",
  "h1": "Intelligent content for compounding growth",
  "description": "Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.",
  "topicOverlap": 0.5555555555555556,
  "topicTerms": [
    "animalz",
    "content",
    "marketing",
    "services",
    "saas",
    "companies",
    "intelligent",
    "compounding",
    "growth"
  ],
  "descriptionTerms": [
    "animalz",
    "content",
    "marketing",
    "agency",
    "provides",
    "strategy",
    "creation",
    "b2b",
    "saas",
    "companies",
    "venture",
    "capitalists",
    "other",
    "tech"
  ],
  "missingFromDescription": [
    "services",
    "intelligent",
    "compounding",
    "growth"
  ],
  "score": 87,
  "weight": 28
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AIO: Answer block readiness

AIO: Answer block readiness scored 65/100 and needs improvement.

2 Warning

Needs attention

AIO: Answer block readiness

Warning
01

Issue

21 section(s) may benefit from a clearer opening answer; this is optional for feature/card sections.

Details

02

Why it matters

AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.

Check name

AIO: Answer block readiness

Score

65/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content eligible and useful for Google AI Overviews and AI Mode extraction.

Result

AIO: Answer block readiness scored 65/100 and needs improvement.

Evidence
{
  "sectionCount": 21,
  "passing": 0,
  "failing": [
    {
      "heading": "A Content Marketing and SEO Agency for Leading B2B SaaS Brands",
      "headingHtml": "<h2 class=\"text-center text-sm mb-8 uppercase tracking-wider text-neutral-500 cursor-default select-none\" id=\"a-content-marketing-and-seo-agency-for-leading-b2b-saas-brands\">A Content Marketing and SEO Agency for Leading B2B SaaS Brands</h2>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Content so good it doesn't feel like marketing",
      "headingHtml": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-so-good-it-doesnt-feel-like-marketing\">Content <em>so good</em> it doesn&apos;t feel like marketing</h2>",
      "firstParagraph": "Our programs combine proprietary research, proven playbooks, and AI workflows to drive organic growth.",
      "paragraphHtml": "<p>Our programs combine proprietary research, proven playbooks, and AI workflows to drive organic growth.</p>",
      "words": 14,
      "direct": false,
      "issue": "First paragraph is 14 words and does not look like a concise direct answer."
    },
    {
      "heading": "Be the thought leader",
      "headingHtml": "<h3 class=\"font-heading text-3xl md:text-4xl lg:text-6xl lg:tracking-tight mt-3\" id=\"be-the-thought-leader\">Be the thought leader </h3>",
      "firstParagraph": "Distribute perspectives that attract the right audience and deliver pipeline. Pair us with your experts or leave the research to us.",
      "paragraphHtml": "<p class=\"mt-6 md:mt-12 text-lg md:text-xl\">Distribute perspectives that attract the right audience and deliver pipeline. Pair us with your experts or leave the research to us.</p>",
      "words": 21,
      "direct": false,
      "issue": "First paragraph is 21 words and does not look like a concise direct answer."
    },
    {
      "heading": "Grow your presence in search & answer engines",
      "headingHtml": "<h3 class=\"font-heading text-3xl md:text-4xl lg:text-6xl lg:tracking-tight mt-3\" id=\"grow-your-presence-in-search-answer-engines\">Grow your presence in search &amp; answer engines </h3>",
      "firstParagraph": "Get sustainable ROI with a conversion-focused, AI-enabled, thoroughly measured SEO / AEO (Answer Engine Optimization) program.",
      "paragraphHtml": "<p class=\"mt-6 md:mt-12 text-lg md:text-xl\">Get sustainable ROI with a conversion-focused, AI-enabled, thoroughly measured SEO / AEO (Answer Engine Optimization) program.&#xa0;</p>",
      "words": 15,
      "direct": false,
      "issue": "First paragraph is 15 words and does not look like a concise direct answer."
    },
    {
      "heading": "Scale your content production",
      "headingHtml": "<h3 class=\"font-heading text-3xl md:text-4xl lg:text-6xl lg:tracking-tight mt-3\" id=\"scale-your-content-production\">Scale your content production </h3>",
      "firstParagraph": "Extend your team with content experts. We learn your product, industry, and go-to-market motion to produce quality content and provide supplementary strategic support.",
      "paragraphHtml": "<p class=\"mt-6 md:mt-12 text-lg md:text-xl\">Extend your team with content experts. We learn your product, industry, and go-to-market motion to produce quality content and provide supplementary strategic support.</p>",
      "words": 23,
      "direct": false,
      "issue": "First paragraph is 23 words and does not look like a concise direct answer."
    },
    {
      "heading": "Content marketing is evolving",
      "headingHtml": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-marketing-is-evolving\">Content marketing is evolving</h2>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "The old way",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl lg:tracking-tight\" id=\"the-old-way\">The old way</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "The Animalz Way",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl lg:tracking-tight\" id=\"the-animalz-way\">The Animalz Way</h3>",
      "firstParagraph": "Our Process",
      "paragraphHtml": "<p class=\"uppercase text-sm text-gray-400 tracking-wide\">Our Process</p>",
      "words": 2,
      "direct": false,
      "issue": "First paragraph is 2 words and does not look like a concise direct answer."
    },
    {
      "heading": "What can you expect?",
      "headingHtml": "<h2 class=\"font-heading text-4xl md:text-5xl lg:text-7xl lg:tracking-tight leading-[0.8] mt-6\" id=\"what-can-you-expect\">What can you expect?</h2>",
      "firstParagraph": "Need more details? We’re happy to work through them together.",
      "paragraphHtml": "<p class=\"mt-8 md:mt-10 text-xl md:text-2xl lg:text-3xl text-neutral-700 leading-snug\">Need more details? We&#x2019;re happy to work through them together.</p>",
      "words": 11,
      "direct": false,
      "issue": "First paragraph is 11 words and does not look like a concise direct answer."
    },
    {
      "heading": "Build context",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"build-context\">Build context</h3>",
      "firstParagraph": "We get to know you, your customers, product, industry, and GTM strategy—while you get to know our team and process.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> We get to know you, your customers, product, industry, and GTM strategy&#x2014;while you get to know our team and process.</p>",
      "words": 21,
      "direct": false,
      "issue": "First paragraph is 21 words and does not look like a concise direct answer."
    },
    {
      "heading": "Formulate strategy",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"formulate-strategy\">Formulate strategy</h3>",
      "firstParagraph": "We often—but not always—start with a tailored strategy built on your context, our proven playbooks, and mutual goals to deliver the right message through the right channels for measurable growth.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> We often&#x2014;but not always&#x2014;start with a tailored strategy built on your context, our proven playbooks, and mutual goals to deliver the right message through the right channels for measurable growth.</p>",
      "words": 32,
      "direct": false,
      "issue": "First paragraph is 32 words and does not look like a concise direct answer."
    },
    {
      "heading": "Craft quality content",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"craft-quality-content\">Craft quality content</h3>",
      "firstParagraph": "Quality isn’t accidental. It’s content purpose-built for your goals, informed by your industry’s realities, anchored in fresh thinking, and adapted for each channel’s unique audience.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> Quality isn&#x2019;t accidental. It&#x2019;s content purpose-built for your goals, informed by your industry&#x2019;s realities, anchored in fresh thinking, and adapted for each channel&#x2019;s unique audience.</p>",
      "words": 29,
      "direct": false,
      "issue": "First paragraph is 29 words and does not look like a concise direct answer."
    },
    {
      "heading": "Analyze performance",
      "headingHtml": "<h3 class=\"font-heading text-2xl md:text-3xl mt-6 transition-colors duration-300 ease-out\" id=\"analyze-performance\">Analyze performance</h3>",
      "firstParagraph": "We set goals together, track progress with your customized dashboard, and analyze results monthly—continuously refining our approach to maximize your investment.",
      "paragraphHtml": "<p class=\"mt-4 text-base md:text-lg text-neutral-500 transition-colors duration-300 ease-out group-hover:text-white/80\"> We set goals together, track progress with your customized dashboard, and analyze results monthly&#x2014;continuously refining our approach to maximize your investment.</p>",
      "words": 22,
      "direct": false,
      "issue": "First paragraph is 22 words and does not look like a concise direct answer."
    },
    {
      "heading": "Content worth giving a hoot about",
      "headingHtml": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-worth-giving-a-hoot-about\">Content worth giving a hoot about</h2>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Claude Code for Content Marketers",
      "headingHtml": "<h3 class=\"text-[20px] text-gray-900 font-heading leading-tight\" id=\"claude-code-for-content-marketers\"> Claude Code for Content Marketers </h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Content Marketers Need to Learn to Pitch Again",
      "headingHtml": "<h3 class=\"text-[20px] text-gray-900 font-heading leading-tight\" id=\"content-marketers-need-to-learn-to-pitch-again\"> Content Marketers Need to Learn to Pitch Again </h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Everybody Wants Thought Leadership Content. But How Do You...",
      "headingHtml": "<h3 class=\"text-[20px] text-gray-900 font-heading leading-tight\" id=\"everybody-wants-thought-leadership-content-but-how-do-you\"> Everybody Wants Thought Leadership Content. But How Do You... </h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Quit horsin' around– Let's chat!",
      "headingHtml": "<h2 class=\"text-3xl md:text-5xl lg:text-6xl font-heading mb-4 md:mb-10\" id=\"quit-horsin-around-lets-chat\">Quit horsin&apos; around&#x2013;<br class=\"hidden lg:block\"> Let&apos;s chat!</h2>",
      "firstParagraph": "Book time on our calendar. We're all ears and happy to consult on your content needs.",
      "paragraphHtml": "<p class=\"text-lg md:text-xl mb-5 md:mb-8 lg:hidden\">Book time on our calendar. We&apos;re all ears and happy to consult on your content needs.</p>",
      "words": 16,
      "direct": false,
      "issue": "First paragraph is 16 words and does not look like a concise direct answer."
    },
    {
      "heading": "Guides",
      "headingHtml": "<h3 class=\"text-lg text-neutral-500 mb-6\" id=\"guides\">Guides</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Resources",
      "headingHtml": "<h3 class=\"text-lg text-neutral-500 mb-6\" id=\"resources\">Resources</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    },
    {
      "heading": "Our Company",
      "headingHtml": "<h3 class=\"text-lg text-neutral-500 mb-6\" id=\"our-company\">Our Company</h3>",
      "firstParagraph": "",
      "paragraphHtml": "",
      "words": 0,
      "direct": false,
      "issue": "No paragraph follows this heading."
    }
  ],
  "score": 65,
  "weight": 8
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AIO: Page experience for AIO

AIO: Page experience for AIO scored 80/100 and needs improvement.

1 Warning

Needs attention

AIO: Page experience for AIO

Warning
01

Issue

145 image(s) are missing width/height attributes.

Details

02

Why it matters

AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.

Check name

AIO: Page experience for AIO

Score

80/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content eligible and useful for Google AI Overviews and AI Mode extraction.

Result

AIO: Page experience for AIO scored 80/100 and needs improvement.

Evidence
{
  "viewportContent": "width=device-width, initial-scale=1",
  "visibleWords": 724,
  "htmlBytes": 191670,
  "imagesMissingDimensions": [
    {
      "src": "/assets/logo-animalz.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logo-animalz.svg\" alt=\"Animalz Logo\" class=\"w-auto h-10\">"
    },
    {
      "src": "/assets/logo-animalz.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img style=\"filter:invert(1);\" src=\"/assets/logo-animalz.svg\" alt=\"Animalz Logo\" class=\"w-auto h-10\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_workos_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_workos_grayscale.svg\" alt=\"logo_workos_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_360learning_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_360learning_grayscale.svg\" alt=\"logo_360learning_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_airtable_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_airtable_grayscale.svg\" alt=\"logo_airtable_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amazon_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amazon_grayscale.svg\" alt=\"logo_amazon_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amplitude_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amplitude_grayscale.svg\" alt=\"logo_amplitude_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_appcues_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_appcues_grayscale.svg\" alt=\"logo_appcues_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_atlassian_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_atlassian_grayscale.svg\" alt=\"logo_atlassian_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_auth0_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_auth0_grayscale.svg\" alt=\"logo_auth0_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_customer.io_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_customer.io_grayscale.svg\" alt=\"logo_customer.io_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_exer_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_exer_grayscale.svg\" alt=\"logo_exer_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_frontify_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_frontify_grayscale.svg\" alt=\"logo_frontify_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_godaddy_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_godaddy_grayscale.svg\" alt=\"logo_godaddy_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_google_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_google_grayscale.svg\" alt=\"logo_google_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_intercom_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_intercom_grayscale.svg\" alt=\"logo_intercom_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_lithic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_lithic_grayscale.svg\" alt=\"logo_lithic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_workos_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_workos_grayscale.svg\" alt=\"logo_workos_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_360learning_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_360learning_grayscale.svg\" alt=\"logo_360learning_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_airtable_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_airtable_grayscale.svg\" alt=\"logo_airtable_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amazon_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amazon_grayscale.svg\" alt=\"logo_amazon_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amplitude_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amplitude_grayscale.svg\" alt=\"logo_amplitude_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_appcues_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_appcues_grayscale.svg\" alt=\"logo_appcues_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_atlassian_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_atlassian_grayscale.svg\" alt=\"logo_atlassian_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_auth0_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_auth0_grayscale.svg\" alt=\"logo_auth0_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_customer.io_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_customer.io_grayscale.svg\" alt=\"logo_customer.io_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_exer_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_exer_grayscale.svg\" alt=\"logo_exer_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_frontify_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_frontify_grayscale.svg\" alt=\"logo_frontify_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_godaddy_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_godaddy_grayscale.svg\" alt=\"logo_godaddy_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_google_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_google_grayscale.svg\" alt=\"logo_google_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_intercom_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_intercom_grayscale.svg\" alt=\"logo_intercom_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_lithic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_lithic_grayscale.svg\" alt=\"logo_lithic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_workos_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_workos_grayscale.svg\" alt=\"logo_workos_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_360learning_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_360learning_grayscale.svg\" alt=\"logo_360learning_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_airtable_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_airtable_grayscale.svg\" alt=\"logo_airtable_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amazon_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amazon_grayscale.svg\" alt=\"logo_amazon_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amplitude_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amplitude_grayscale.svg\" alt=\"logo_amplitude_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_appcues_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_appcues_grayscale.svg\" alt=\"logo_appcues_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_atlassian_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_atlassian_grayscale.svg\" alt=\"logo_atlassian_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_auth0_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_auth0_grayscale.svg\" alt=\"logo_auth0_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_customer.io_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_customer.io_grayscale.svg\" alt=\"logo_customer.io_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_exer_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_exer_grayscale.svg\" alt=\"logo_exer_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_frontify_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_frontify_grayscale.svg\" alt=\"logo_frontify_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_godaddy_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_godaddy_grayscale.svg\" alt=\"logo_godaddy_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_google_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_google_grayscale.svg\" alt=\"logo_google_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_intercom_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_intercom_grayscale.svg\" alt=\"logo_intercom_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_lithic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_lithic_grayscale.svg\" alt=\"logo_lithic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_workos_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_workos_grayscale.svg\" alt=\"logo_workos_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_360learning_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_360learning_grayscale.svg\" alt=\"logo_360learning_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_airtable_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_airtable_grayscale.svg\" alt=\"logo_airtable_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amazon_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amazon_grayscale.svg\" alt=\"logo_amazon_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_amplitude_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_amplitude_grayscale.svg\" alt=\"logo_amplitude_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_appcues_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_appcues_grayscale.svg\" alt=\"logo_appcues_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_atlassian_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_atlassian_grayscale.svg\" alt=\"logo_atlassian_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_auth0_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_auth0_grayscale.svg\" alt=\"logo_auth0_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_customer.io_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_customer.io_grayscale.svg\" alt=\"logo_customer.io_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_exer_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_exer_grayscale.svg\" alt=\"logo_exer_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_frontify_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_frontify_grayscale.svg\" alt=\"logo_frontify_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_godaddy_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_godaddy_grayscale.svg\" alt=\"logo_godaddy_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_google_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_google_grayscale.svg\" alt=\"logo_google_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_intercom_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_intercom_grayscale.svg\" alt=\"logo_intercom_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_lithic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_lithic_grayscale.svg\" alt=\"logo_lithic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_parabol_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_parabol_grayscale.svg\" alt=\"logo_parabol_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_preply_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_preply_grayscale.svg\" alt=\"logo_preply_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_profitwell_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_profitwell_grayscale.svg\" alt=\"logo_profitwell_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_ramp_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_ramp_grayscale.svg\" alt=\"logo_ramp_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_rilla_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_rilla_grayscale.svg\" alt=\"logo_rilla_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sacra_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sacra_grayscale.svg\" alt=\"logo_sacra_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sapphire_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sapphire_grayscale.svg\" alt=\"logo_sapphire_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_segment_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_segment_grayscale.svg\" alt=\"logo_segment_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sellbrite_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sellbrite_grayscale.svg\" alt=\"logo_sellbrite_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_simplelegal_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_simplelegal_grayscale.svg\" alt=\"logo_simplelegal_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_socialcapital_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_socialcapital_grayscale.svg\" alt=\"logo_socialcapital_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_supportlogic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_supportlogic_grayscale.svg\" alt=\"logo_supportlogic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_uipath_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_uipath_grayscale.svg\" alt=\"logo_uipath_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_unit21_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_unit21_grayscale.svg\" alt=\"logo_unit21_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_wistia_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_wistia_grayscale.svg\" alt=\"logo_wistia_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_parabol_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_parabol_grayscale.svg\" alt=\"logo_parabol_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_preply_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_preply_grayscale.svg\" alt=\"logo_preply_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_profitwell_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_profitwell_grayscale.svg\" alt=\"logo_profitwell_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_ramp_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_ramp_grayscale.svg\" alt=\"logo_ramp_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_rilla_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_rilla_grayscale.svg\" alt=\"logo_rilla_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sacra_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sacra_grayscale.svg\" alt=\"logo_sacra_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sapphire_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sapphire_grayscale.svg\" alt=\"logo_sapphire_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_segment_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_segment_grayscale.svg\" alt=\"logo_segment_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sellbrite_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sellbrite_grayscale.svg\" alt=\"logo_sellbrite_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_simplelegal_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_simplelegal_grayscale.svg\" alt=\"logo_simplelegal_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_socialcapital_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_socialcapital_grayscale.svg\" alt=\"logo_socialcapital_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_supportlogic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_supportlogic_grayscale.svg\" alt=\"logo_supportlogic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_uipath_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_uipath_grayscale.svg\" alt=\"logo_uipath_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_unit21_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_unit21_grayscale.svg\" alt=\"logo_unit21_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_wistia_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_wistia_grayscale.svg\" alt=\"logo_wistia_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_parabol_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_parabol_grayscale.svg\" alt=\"logo_parabol_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_preply_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_preply_grayscale.svg\" alt=\"logo_preply_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_profitwell_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_profitwell_grayscale.svg\" alt=\"logo_profitwell_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_ramp_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_ramp_grayscale.svg\" alt=\"logo_ramp_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_rilla_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_rilla_grayscale.svg\" alt=\"logo_rilla_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sacra_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sacra_grayscale.svg\" alt=\"logo_sacra_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sapphire_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sapphire_grayscale.svg\" alt=\"logo_sapphire_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_segment_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_segment_grayscale.svg\" alt=\"logo_segment_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sellbrite_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sellbrite_grayscale.svg\" alt=\"logo_sellbrite_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_simplelegal_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_simplelegal_grayscale.svg\" alt=\"logo_simplelegal_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_socialcapital_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_socialcapital_grayscale.svg\" alt=\"logo_socialcapital_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_supportlogic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_supportlogic_grayscale.svg\" alt=\"logo_supportlogic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_uipath_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_uipath_grayscale.svg\" alt=\"logo_uipath_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_unit21_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_unit21_grayscale.svg\" alt=\"logo_unit21_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_wistia_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_wistia_grayscale.svg\" alt=\"logo_wistia_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_parabol_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_parabol_grayscale.svg\" alt=\"logo_parabol_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_preply_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_preply_grayscale.svg\" alt=\"logo_preply_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_profitwell_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_profitwell_grayscale.svg\" alt=\"logo_profitwell_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_ramp_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_ramp_grayscale.svg\" alt=\"logo_ramp_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_rilla_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_rilla_grayscale.svg\" alt=\"logo_rilla_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sacra_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sacra_grayscale.svg\" alt=\"logo_sacra_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sapphire_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sapphire_grayscale.svg\" alt=\"logo_sapphire_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_segment_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_segment_grayscale.svg\" alt=\"logo_segment_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_sellbrite_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_sellbrite_grayscale.svg\" alt=\"logo_sellbrite_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_simplelegal_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_simplelegal_grayscale.svg\" alt=\"logo_simplelegal_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_socialcapital_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_socialcapital_grayscale.svg\" alt=\"logo_socialcapital_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_supportlogic_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_supportlogic_grayscale.svg\" alt=\"logo_supportlogic_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_uipath_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_uipath_grayscale.svg\" alt=\"logo_uipath_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_unit21_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_unit21_grayscale.svg\" alt=\"logo_unit21_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/logos/grayscale/logo_wistia_grayscale.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logos/grayscale/logo_wistia_grayscale.svg\" alt=\"logo_wistia_grayscale\" class=\"brightness-0 opacity-60 w-[100px] h-[40px] lg:w-[150px] lg:h-auto\">"
    },
    {
      "src": "/assets/unit21-logo-white.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/unit21-logo-white.svg\" alt=\"&#x24;Millions in Pipeline\" class=\"h-6 relative z-20\">"
    },
    {
      "src": "/assets/sl-logo-white.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/sl-logo-white.svg\" alt=\"5x Organic Traffic in 12 Months\" class=\"h-6 relative z-20\">"
    },
    {
      "src": "/assets/lithic-logo-white.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/lithic-logo-white.svg\" alt=\"172% MQL Growth YoY\" class=\"h-6 relative z-20\">"
    },
    {
      "src": "/assets/face-pensive.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-pensive.svg\" alt=\"Brand voices matter most\" class=\"w-5 h-5 md:w-6 md:h-6\">"
    },
    {
      "src": "/assets/face-worried.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-worried.svg\" alt=\"Channels were for promoting anchor assets\" class=\"w-5 h-5 md:w-6 md:h-6\">"
    },
    {
      "src": "/assets/face-sad-sweat.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-sad-sweat.svg\" alt=\"Keyword stuffing for SEO\" class=\"w-5 h-5 md:w-6 md:h-6\">"
    },
    {
      "src": "/assets/face-frown.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-frown.svg\" alt=\"Content = Blog\" class=\"w-5 h-5 md:w-6 md:h-6\">"
    },
    {
      "src": "/assets/face-frown-open.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-frown-open.svg\" alt=\"Handwritten\" class=\"w-5 h-5 md:w-6 md:h-6\">"
    },
    {
      "src": "/assets/face-laugh-wink.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-laugh-wink.svg\" alt=\"Spokespeople matter most\" class=\"w-5 h-5 md:w-6 md:h-6 brightness-0 invert\">"
    },
    {
      "src": "/assets/face-smile-hearts.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-smile-hearts.svg\" alt=\"Channels require zero-click approaches\" class=\"w-5 h-5 md:w-6 md:h-6 brightness-0 invert\">"
    },
    {
      "src": "/assets/face-smile-wink.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-smile-wink.svg\" alt=\"SEO &#x1f91d; AEO!\" class=\"w-5 h-5 md:w-6 md:h-6 brightness-0 invert\">"
    },
    {
      "src": "/assets/face-laugh-squint.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-laugh-squint.svg\" alt=\"Content = Multimedia\" class=\"w-5 h-5 md:w-6 md:h-6 brightness-0 invert\">"
    },
    {
      "src": "/assets/face-laugh-beam.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/face-laugh-beam.svg\" alt=\"AI-Assisted\" class=\"w-5 h-5 md:w-6 md:h-6 brightness-0 invert\">"
    },
    {
      "src": "/img/asset/YXNzZXRzLzIwMjYvMDQvY2xhdWRlLWNvZGUtZ3VpZGUtZmVhdHVyZWQuanBn/claude-code-guide-featured.jpg?w=1200&h=675&fit=crop&s=dda658a65bda9458b06cfaf41892da5d",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/img/asset/YXNzZXRzLzIwMjYvMDQvY2xhdWRlLWNvZGUtZ3VpZGUtZmVhdHVyZWQuanBn/claude-code-guide-featured.jpg?w=1200&amp;h=675&amp;fit=crop&amp;s=dda658a65bda9458b06cfaf41892da5d\" alt=\"Claude Code for Content Marketers\" class=\"w-full h-full object-cover\">"
    },
    {
      "src": "/img/asset/YXNzZXRzL2NyZWF0aXZlLXBpdGNoLWNoZWNrbGlzdC1oZWFkZXIuanBn/creative-pitch-checklist-header.jpg?w=1200&h=675&fit=crop&s=f3dc0e2fa977c4d5c27c13f33ef16e13",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/img/asset/YXNzZXRzL2NyZWF0aXZlLXBpdGNoLWNoZWNrbGlzdC1oZWFkZXIuanBn/creative-pitch-checklist-header.jpg?w=1200&amp;h=675&amp;fit=crop&amp;s=f3dc0e2fa977c4d5c27c13f33ef16e13\" alt=\"Content Marketers Need to Learn to Pitch Again\" class=\"w-full h-full object-cover\">"
    },
    {
      "src": "/img/asset/YXNzZXRzLzIwMjAvMDcvdGhvdWdodC1sZWFkZXJzaGlwLWZlYXR1cmVkLWltYWdlLTEyMDAtVElOWS5qcGc/thought-leadership-featured-image-1200-TINY.jpg?w=1200&h=675&fit=crop&s=5c831fe61dc529f3ac24c08766bfdfd3",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/img/asset/YXNzZXRzLzIwMjAvMDcvdGhvdWdodC1sZWFkZXJzaGlwLWZlYXR1cmVkLWltYWdlLTEyMDAtVElOWS5qcGc/thought-leadership-featured-image-1200-TINY.jpg?w=1200&amp;h=675&amp;fit=crop&amp;s=5c831fe61dc529f3ac24c08766bfdfd3\" alt=\"Everybody Wants Thought Leadership Content. But How Do You Do It, Exactly?\" class=\"w-full h-full object-cover\">"
    },
    {
      "src": "/assets/horse.png",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/horse.png\" alt=\"Horse\" class=\"w-[90px] h-[60px] transform scale-x-[-1]\">"
    },
    {
      "src": "/assets/horse.png",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/horse.png\" alt=\"Horse\" class=\"w-[370px] h-[263px]\">"
    },
    {
      "src": "/assets/logo-animalz.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/logo-animalz.svg\" alt=\"Animalz Logo\" class=\"h-10 mb-6\">"
    },
    {
      "src": "/assets/linkedin-in.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/linkedin-in.svg\" class=\"w-5 h-5\" alt=\"link icon\">"
    },
    {
      "src": "/assets/x-logo.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/x-logo.svg\" class=\"w-5 h-5\" alt=\"link icon\">"
    },
    {
      "src": "/assets/icon-youtubee.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/icon-youtubee.svg\" class=\"w-5 h-5\" alt=\"link icon\">"
    },
    {
      "src": "/assets/mdi-spotify.svg",
      "width": "",
      "height": "",
      "loading": "",
      "html": "<img src=\"/assets/mdi-spotify.svg\" class=\"w-5 h-5\" alt=\"link icon\">"
    }
  ],
  "possibleDialogs": [],
  "score": 80,
  "weight": 10
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AEO: Answer intent coverage

AEO: Answer intent coverage scored 70/100 and needs improvement.

1 Warning

Needs attention

AEO: Answer intent coverage

Warning
01

Issue

Missing likely AI Overview intent sections: how, benefits, cost, compare.

Details

02

Why it matters

Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.

Check name

AEO: Answer intent coverage

Score

70/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for answer engines and assistants to answer from directly.

Result

AEO: Answer intent coverage scored 70/100 and needs improvement.

Evidence
{
  "headings": [
    {
      "text": "A Content Marketing and SEO Agency for Leading B2B SaaS Brands",
      "html": "<h2 class=\"text-center text-sm mb-8 uppercase tracking-wider text-neutral-500 cursor-default select-none\" id=\"a-content-marketing-and-seo-agency-for-leading-b2b-saas-brands\">A Content Marketing and SEO Agency for Leading B2B SaaS Brands</h2>"
    },
    {
      "text": "Content so good it doesn't feel like marketing",
      "html": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-so-good-it-doesnt-feel-like-marketing\">Content <em>so good</em> it doesn&apos;t feel like marketing</h2>"
    },
    {
      "text": "Content marketing is evolving",
      "html": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-marketing-is-evolving\">Content marketing is evolving</h2>"
    },
    {
      "text": "What can you expect?",
      "html": "<h2 class=\"font-heading text-4xl md:text-5xl lg:text-7xl lg:tracking-tight leading-[0.8] mt-6\" id=\"what-can-you-expect\">What can you expect?</h2>"
    },
    {
      "text": "Content worth giving a hoot about",
      "html": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-worth-giving-a-hoot-about\">Content worth giving a hoot about</h2>"
    },
    {
      "text": "Quit horsin' around– Let's chat!",
      "html": "<h2 class=\"text-3xl md:text-5xl lg:text-6xl font-heading mb-4 md:mb-10\" id=\"quit-horsin-around-lets-chat\">Quit horsin&apos; around&#x2013;<br class=\"hidden lg:block\"> Let&apos;s chat!</h2>"
    }
  ],
  "expected": [
    {
      "id": "what",
      "label": "What is Animalz?",
      "pattern": {}
    },
    {
      "id": "how",
      "label": "How does Animalz work?",
      "pattern": {}
    },
    {
      "id": "benefits",
      "label": "Why use Animalz?",
      "pattern": {}
    },
    {
      "id": "cost",
      "label": "Is Animalz free or paid?",
      "pattern": {}
    },
    {
      "id": "compare",
      "label": "How does Animalz compare with alternatives?",
      "pattern": {}
    }
  ],
  "missing": [
    {
      "id": "how",
      "label": "How does Animalz work?",
      "pattern": {}
    },
    {
      "id": "benefits",
      "label": "Why use Animalz?",
      "pattern": {}
    },
    {
      "id": "cost",
      "label": "Is Animalz free or paid?",
      "pattern": {}
    },
    {
      "id": "compare",
      "label": "How does Animalz compare with alternatives?",
      "pattern": {}
    }
  ],
  "score": 70,
  "weight": 8
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AEO: Entity and definition clarity

AEO: Entity and definition clarity scored 89/100 and needs improvement.

1 Warning

Needs attention

AEO: Entity and definition clarity

Warning
01

Issue

Entity or definition gaps: services, intelligent, compounding, growth.

Details

02

Why it matters

Answer engines need concise answers, question-led structure, entity clarity, visible evidence, and trust signals that can be extracted without relying on search-only metadata checks.

Check name

AEO: Entity and definition clarity

Score

89/100

Status

warning

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content easy for answer engines and assistants to answer from directly.

Result

AEO: Entity and definition clarity scored 89/100 and needs improvement.

Evidence
{
  "title": "Animalz | Content Marketing Services for SaaS Companies",
  "h1": "Intelligent content for compounding growth",
  "description": "Animalz is a content marketing agency that provides content strategy and creation to B2B SaaS companies, venture capitalists, and other tech companies.",
  "topicOverlap": 0.5555555555555556,
  "definitionCount": 2,
  "topicTerms": [
    "animalz",
    "content",
    "marketing",
    "services",
    "saas",
    "companies",
    "intelligent",
    "compounding",
    "growth"
  ],
  "descriptionTerms": [
    "animalz",
    "content",
    "marketing",
    "agency",
    "provides",
    "strategy",
    "creation",
    "b2b",
    "saas",
    "companies",
    "venture",
    "capitalists",
    "other",
    "tech"
  ],
  "missingFromDescription": [
    "services",
    "intelligent",
    "compounding",
    "growth"
  ],
  "score": 89,
  "weight": 18
}

Agent Ease of UseAPIEmerging recommendation

AI context endpoint

AI context endpoint is informational for this page.

Informational

Needs attention

AI context endpoint

Informational
01

Issue

AI context endpoint is informational for this page.

02

Why it matters

A context endpoint gives agents a small, low-latency summary of product purpose, safe actions, and canonical machine-readable resources without scraping the whole site.

Check name

AI context endpoint

Score

100/100

Status

informational

Category

API

Maturity

Emerging recommendation

Goal

Expose a compact API context endpoint agents can fetch before deciding which public API or discovery resource to use.

Result

AI context endpoint is informational for this page.

Validation steps

  1. Fetch to find resource

    AI context endpoint was not found at the expected path.

Evidence
{
  "steps": [
    {
      "id": "fetch",
      "title": "Fetch to find resource",
      "status": "informational",
      "evidence": {
        "checked": [
          {
            "path": "/api/ai/context",
            "statusCode": 404,
            "contentType": "application/json",
            "length": 24
          },
          {
            "path": "/api/context",
            "statusCode": 404,
            "contentType": "application/json",
            "length": 24
          },
          {
            "path": "/context",
            "statusCode": 404,
            "contentType": "text/html; charset=utf-8",
            "length": 43741
          }
        ]
      },
      "issue": "AI context endpoint was not found at the expected path.",
      "howToFix": "Publish a concise JSON or Markdown AI context endpoint describing the product, public actions, and machine-readable resources."
    }
  ]
}

GEO, AIO and AEOGEO, AIO & AEOEmerging recommendation

AIO: Query intent coverage

AIO: Query intent coverage is informational for this page.

Informational

Needs attention

AIO: Query intent coverage

Informational
01

Issue

Missing likely AI Overview intent sections: how, benefits, cost, compare.

Details

02

Why it matters

AI Overviews depend on Google-search eligibility, useful visible content, consistent structured data, answer-first sections, trust signals, and preview controls that permit snippets.

Check name

AIO: Query intent coverage

Score

70/100

Status

informational

Category

GEO, AIO & AEO

Maturity

Emerging recommendation

Goal

Make page content eligible and useful for Google AI Overviews and AI Mode extraction.

Result

AIO: Query intent coverage is informational for this page.

Evidence
{
  "headings": [
    {
      "text": "A Content Marketing and SEO Agency for Leading B2B SaaS Brands",
      "html": "<h2 class=\"text-center text-sm mb-8 uppercase tracking-wider text-neutral-500 cursor-default select-none\" id=\"a-content-marketing-and-seo-agency-for-leading-b2b-saas-brands\">A Content Marketing and SEO Agency for Leading B2B SaaS Brands</h2>"
    },
    {
      "text": "Content so good it doesn't feel like marketing",
      "html": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-so-good-it-doesnt-feel-like-marketing\">Content <em>so good</em> it doesn&apos;t feel like marketing</h2>"
    },
    {
      "text": "Content marketing is evolving",
      "html": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-marketing-is-evolving\">Content marketing is evolving</h2>"
    },
    {
      "text": "What can you expect?",
      "html": "<h2 class=\"font-heading text-4xl md:text-5xl lg:text-7xl lg:tracking-tight leading-[0.8] mt-6\" id=\"what-can-you-expect\">What can you expect?</h2>"
    },
    {
      "text": "Content worth giving a hoot about",
      "html": "<h2 class=\"text-4xl lg:text-7xl font-heading tracking-tight\" id=\"content-worth-giving-a-hoot-about\">Content worth giving a hoot about</h2>"
    },
    {
      "text": "Quit horsin' around– Let's chat!",
      "html": "<h2 class=\"text-3xl md:text-5xl lg:text-6xl font-heading mb-4 md:mb-10\" id=\"quit-horsin-around-lets-chat\">Quit horsin&apos; around&#x2013;<br class=\"hidden lg:block\"> Let&apos;s chat!</h2>"
    }
  ],
  "expected": [
    {
      "id": "what",
      "label": "What is Animalz?",
      "pattern": {}
    },
    {
      "id": "how",
      "label": "How does Animalz work?",
      "pattern": {}
    },
    {
      "id": "benefits",
      "label": "Why use Animalz?",
      "pattern": {}
    },
    {
      "id": "cost",
      "label": "Is Animalz free or paid?",
      "pattern": {}
    },
    {
      "id": "compare",
      "label": "How does Animalz compare with alternatives?",
      "pattern": {}
    }
  ],
  "missing": [
    {
      "id": "how",
      "label": "How does Animalz work?",
      "pattern": {}
    },
    {
      "id": "benefits",
      "label": "Why use Animalz?",
      "pattern": {}
    },
    {
      "id": "cost",
      "label": "Is Animalz free or paid?",
      "pattern": {}
    },
    {
      "id": "compare",
      "label": "How does Animalz compare with alternatives?",
      "pattern": {}
    }
  ],
  "score": 70,
  "weight": 4
}

AI DiscoverabilityDiscoverabilityEstablished

IndexNow key

IndexNow key is informational for this page.

Informational

Needs attention

IndexNow key

Informational
01

Issue

IndexNow key is informational for this page.

02

Why it matters

IndexNow lets sites notify participating search engines about changed URLs, but ownership verification requires a UTF-8 key file whose filename matches the key.

Check name

IndexNow key

Score

100/100

Status

informational

Category

Discoverability

Maturity

Established

Goal

Verify that IndexNow ownership key placement is detectable when the site advertises it.

Result

IndexNow key is informational for this page.

Validation steps

  1. Find advertised IndexNow key location

    No IndexNow key location was advertised in HTML, Link headers, or robots.txt.

  2. Fetch and validate IndexNow key file

    No discoverable IndexNow key file was found.

Evidence
{
  "steps": [
    {
      "id": "advertised-location",
      "title": "Find advertised IndexNow key location",
      "status": "informational",
      "evidence": {
        "advertised": []
      },
      "issue": "No IndexNow key location was advertised in HTML, Link headers, or robots.txt.",
      "howToFix": "Advertise the key location with robots.txt IndexNow-Key, rel=\"indexnow-key\", or meta name=\"indexnow-key-location\" if you want scanners to verify it."
    },
    {
      "id": "fetch-key",
      "title": "Fetch and validate IndexNow key file",
      "status": "informational",
      "evidence": {
        "advertised": [],
        "checked": []
      },
      "issue": "No discoverable IndexNow key file was found.",
      "howToFix": "Host a UTF-8 text file named {key}.txt using a 32-character hexadecimal key whose body exactly matches the key."
    }
  ]
}

Performance and AccessibilityAccessibilityBrowser audit

Background and foreground colors do not have a sufficient contrast ratio.

100 Fail

Check name

Background and foreground colors do not have a sufficient contrast ratio.

Score

0/100

Status

fail

Device

desktop

Category

Accessibility

Fix guidance

Low-contrast text is difficult or impossible for many users to read. [Learn how to provide sufficient color contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast).

Evidence
{
  "description": "Low-contrast text is difficult or impossible for many users to read. [Learn how to provide sufficient color contrast](https://dequeuniversity.com/rules/axe/4.11/color-contrast)."
}

SEOSEOBrowser audit

Document does not have a valid `rel=canonical`

100 Fail

Check name

Document does not have a valid `rel=canonical`

Score

0/100

Status

fail

Device

desktop

Category

SEO

Fix guidance

Canonical links suggest which URL to show in search results. [Learn more about canonical links](https://developer.chrome.com/docs/lighthouse/seo/canonical/).

Evidence
{
  "description": "Canonical links suggest which URL to show in search results. [Learn more about canonical links](https://developer.chrome.com/docs/lighthouse/seo/canonical/)."
}

Performance and AccessibilityPerformanceBrowser audit

Network dependency tree

20 Fail

Check name

Network dependency tree

Score

0/100

Status

fail

Device

desktop

Category

Performance

Fix guidance

[Avoid chaining critical requests](https://developer.chrome.com/docs/performance/insights/network-dependency-tree) by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.

Evidence
{
  "description": "[Avoid chaining critical requests](https://developer.chrome.com/docs/performance/insights/network-dependency-tree) by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load."
}

Performance and AccessibilityPerformanceBrowser audit

Avoid enormous network payloads

10 Warning

Check name

Avoid enormous network payloads

Score

50/100

Status

warning

Device

desktop

Category

Performance

Estimated savings

Total size was 2,703 KiB

Fix guidance

Large network payloads cost users real money and are highly correlated with long load times. [Learn how to reduce payload sizes](https://developer.chrome.com/docs/lighthouse/performance/total-byte-weight/).

Evidence
{
  "displayValue": "Total size was 2,703 KiB",
  "description": "Large network payloads cost users real money and are highly correlated with long load times. [Learn how to reduce payload sizes](https://developer.chrome.com/docs/lighthouse/performance/total-byte-weight/).",
  "numericValue": 2768062
}

Performance and AccessibilityPerformanceBrowser audit

Font display

10 Warning

Check name

Font display

Score

50/100

Status

warning

Device

desktop

Category

Performance

Estimated savings

Est savings of 10 ms

Fix guidance

Consider setting [font-display](https://developer.chrome.com/docs/performance/insights/font-display) to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with [font metric overrides](https://developer.chrome.com/blog/font-fallbacks).

Evidence
{
  "displayValue": "Est savings of 10 ms",
  "description": "Consider setting [font-display](https://developer.chrome.com/docs/performance/insights/font-display) to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with [font metric overrides](https://developer.chrome.com/blog/font-fallbacks)."
}

Performance and AccessibilityPerformanceBrowser audit

Image elements do not have explicit `width` and `height`

10 Warning

Check name

Image elements do not have explicit `width` and `height`

Score

50/100

Status

warning

Device

desktop

Category

Performance

Fix guidance

Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/articles/optimize-cls#images_without_dimensions)

Evidence
{
  "description": "Set an explicit width and height on image elements to reduce layout shifts and improve CLS. [Learn how to set image dimensions](https://web.dev/articles/optimize-cls#images_without_dimensions)"
}

Performance and AccessibilityPerformanceBrowser audit

Loading performance

6 Fail

Check name

Loading performance

Score

68/100

Status

fail

Device

desktop

Category

Performance

Fix guidance

Review the grouped loading performance checks and improve the failing sub-checks listed in evidence.

Evidence
{
  "checks": [
    {
      "id": "largest-contentful-paint",
      "title": "Largest Contentful Paint",
      "score": 99,
      "displayValue": "0.7 s",
      "numericValue": 713.3815061004755
    },
    {
      "id": "first-contentful-paint",
      "title": "First Contentful Paint",
      "score": 100,
      "displayValue": "0.3 s",
      "numericValue": 309.0094533099917
    },
    {
      "id": "server-response-time",
      "title": "Initial server response time was short",
      "score": 100,
      "displayValue": "Root document took 0 ms",
      "numericValue": 4
    },
    {
      "id": "interactive",
      "title": "Time to Interactive",
      "score": 54,
      "displayValue": "4.2 s",
      "numericValue": 4246.261479505116
    },
    {
      "id": "network-rtt",
      "title": "Network Round Trip Times",
      "score": 100,
      "displayValue": "50 ms",
      "numericValue": 49.90256999999999
    },
    {
      "id": "speed-index",
      "title": "Speed Index",
      "score": 50,
      "displayValue": "2.3 s",
      "numericValue": 2283.372224849807
    },
    {
      "id": "max-potential-fid",
      "title": "Max Potential First Input Delay",
      "score": 33,
      "displayValue": "310 ms",
      "numericValue": 311
    },
    {
      "id": "total-blocking-time",
      "title": "Total Blocking Time",
      "score": 10,
      "displayValue": "810 ms",
      "numericValue": 811.0000000000001
    }
  ]
}

Fix with MCP or CLI

Use this report as the handoff into remediation. Generate a coding-agent prompt with the failing checks attached, or jump to the MCP and CLI setup docs before your next rescan.

Score history

Public scan score over time

Public reports for this website origin. Select any point or report link to open that canonical report.

1 reports
Public score history report links
Scan dateScoreReadinessReport
48/100Level 2, Agent-LimitedCurrent report
animalz.co AI SEO Report: 48/100 (Level 2, Agent-Limited)