Skip to main content

thatware.co — Website Report

Scored 73/100 · Scanned with Foglift

C
OverallOverall Score — weighted average of all category scores

thatware.co scored 73. Addressing the 16 listed issues could raise its estimated score to 86.

2 critical8 warnings16 total issues

Quick wins

~140 min total fix time
1Missing Referrer Policy header~2m
2No main landmark~3m
3No skip navigation link~5m

https://thatware.co/ · 2026-08-18

Scanned with Foglift · Technical Audit + AI Readiness analysis

AI Action Plan

Website Analysis for https://thatware.co Great news — your site has strong AI Readiness (70/100). Overall score: 73/100. Its technical, content, and authority signals give AI systems a solid foundation for accessing, understanding, and reusing the page. We found 2 critical issues and 8 warnings. Here's your prioritized action plan:

FIX FIRST (Critical): 1. AI engines can't understand your business — Your site has no structured data — the machine-readable labels that tell AI what your business does, what you offer, and why you're an authority. Without this, AI assistants are much less likely to mention or recommend you.

2. 11 images missing alt text — Found 11 of 67 images without alt attributes. Alt text is critical for accessibility (screen readers) and SEO (image search). QUICK WINS (Warnings): 1. Missing Referrer Policy header — Add a Referrer-Policy header to control information leakage. 2. Missing Open Graph tags — Missing og:title, og:description, og:image. Add these for better social media sharing previews on Facebook, LinkedIn, and Twitter. 3. 16% of images lack alt text — 11 of 67 images have no alt

9 more critical fixes + quick wins in your full report

Enter your email and we'll send the complete action plan to your inbox.

No spam. Just your report.

Share This Report

Send this scan to a teammate or contact. The shareable link includes all scores and issues.

Email to Contact

AI Readiness

Technical and authority signals that support AI systems in accessing, understanding, and reusing your content

70C
Technical60
Authority78
Set up all 6 tiers free →
100
Brand Mentions
Found 20+ web mentions of "thatware"
56
Domain Authority
PageRank: 3.4/10, 15+ external references
85
Content Freshness
4 of 5 pages updated in the last 30 days
60
Technical Readiness
Moderate technical readiness — some improvements possible

Technical Issues

AI engines can't understand your businesscritical~10 min fix

Your site has no structured data — the machine-readable labels that tell AI what your business does, what you offer, and why you're an authority. Without this, AI assistants are much less likely to mention or recommend you.

Quick Fix
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company Name",
  "url": "https://yoursite.com",
  "description": "Brief description of your business",
  "sameAs": [
    "https://twitter.com/yourhandle",
    "https://linkedin.com/company/yourcompany"
  ]
}
</script>
Add JSON-LD structured data so AI models understand your business entity and can cite you accurately.
AI doesn't know who you areinfo~10 min fix

Your site is missing identity markup that tells AI engines "we are [Company X], and here's what we do." Adding this helps AI assistants recognize your brand as an authority and recommend you by name.

Quick Fix
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Your Company",
  "url": "https://yoursite.com",
  "logo": "https://yoursite.com/logo.png",
  "sameAs": [
    "https://twitter.com/yourhandle",
    "https://linkedin.com/company/yourcompany",
    "https://github.com/yourorg"
  ],
  "contactPoint": {
    "@type": "ContactPoint",
    "email": "hello@yoursite.com",
    "contactType": "customer service"
  }
}
</script>
Entity markup tells AI models who you are, making them more likely to cite your brand accurately.

How does AI see Thatware?

When users ask AI about your industry, are you recommended?

G
C
P
Ge
A

Start with weekly Perplexity checks for Thatware. Paid plans add ChatGPT, Google AI Overview, Gemini, and Claude.

SEO & Technical Issues (14)

11 images missing alt textcriticalSEO

Found 11 of 67 images without alt attributes. Alt text is critical for accessibility (screen readers) and SEO (image search).

Missing Referrer Policy headerwarningSecurity~2 min fix

Add a Referrer-Policy header to control information leakage.

Quick Fix
# Nginx:
add_header Referrer-Policy "strict-origin-when-cross-origin" always;

# Next.js (next.config.js headers):
{ key: 'Referrer-Policy', value: 'strict-origin-when-cross-origin' }
Controls how much referrer information is sent with requests, protecting user privacy.
Missing Open Graph tagswarningSEO~10 min fix

Missing og:title, og:description, og:image. Add these for better social media sharing previews on Facebook, LinkedIn, and Twitter.

Quick Fix
<meta property="og:title" content="Your Page Title">
<meta property="og:description" content="Description for social sharing">
<meta property="og:image" content="https://yoursite.com/og-image.jpg">
<meta property="og:url" content="https://yoursite.com/page">
<meta property="og:type" content="website">
Open Graph tags control how your page looks when shared on Facebook, LinkedIn, and other social platforms.
16% of images lack alt textwarningAccessibility

11 of 67 images have no alt attribute. Screen readers cannot describe these images to visually impaired users.

Skipped heading levelwarningAccessibility

Heading hierarchy jumps from H1 to H6. Don't skip heading levels — this confuses screen readers and assistive technology.

13 links with vague textwarningAccessibility

Links with text like "click here" or "read more" don't make sense out of context. Use descriptive link text that explains the destination.

Potential low contrast textwarningAccessibility

Some text appears to use light colors that may not have sufficient contrast against the background. WCAG requires a minimum 4.5:1 contrast ratio.

10 external stylesheetswarningPerformance

Loading 10 CSS files. Each blocks rendering. Consider combining stylesheets or inlining critical CSS.

55 images without lazy loadingwarningPerformance

55 images don't use loading="lazy". Add lazy loading to below-the-fold images to improve initial page load.

No structured data foundinfoSEO

Add JSON-LD structured data (Schema.org) to help search engines understand your content and earn rich snippets in search results.

Few internal linksinfoSEO

Add more internal links to help search engines discover and index your other pages. Internal linking also helps distribute page authority.

No main landmarkinfoAccessibility~3 min fix

Add a <main> element to identify the primary content area. Screen reader users use this to skip navigation.

Quick Fix
<!-- Wrap your primary content in a <main> element -->
<main id="main-content">
  <h1>Page Title</h1>
  <p>Your primary content here...</p>
</main>
The <main> element identifies the primary content area, letting screen reader users skip to it directly.
No skip navigation linkinfoAccessibility~5 min fix

Add a 'Skip to main content' link at the top of the page so keyboard users can bypass repetitive navigation.

Quick Fix
<!-- Add as the first element inside <body> -->
<a href="#main-content" class="sr-only focus:not-sr-only focus:absolute focus:top-2 focus:left-2 focus:z-50 focus:px-4 focus:py-2 focus:bg-blue-600 focus:text-white focus:rounded">
  Skip to main content
</a>

<!-- Add id to your main content area -->
<main id="main-content">
  ...
</main>
Skip links let keyboard users bypass repetitive navigation and jump straight to content.
HTML contains many commentsinfoPerformance

Found 45 HTML comments. Remove unnecessary comments in production to reduce file size.

Your Potential Score

73

Now

86

Estimated potential

+13 points estimated improvement from addressing 16 listed issues

Estimate based on the measured category scores and the issues listed in this audit.

Track your AI visibility over time

AI Visibility Monitoring

Free checks Perplexity weekly while you're active. Paid plans add ChatGPT, Google AI Overview, Gemini, and Claude with daily, twice-daily, or hourly monitoring.

Competitor Tracking

Compare your AI visibility against competitors. Know when they overtake you.

Weekly Digest

Get AI-generated insights emailed every Monday with action items.

Set up Free monitoring

Weekly Perplexity while active · No credit card required

Compare paid plans — from $49/mo

Industry Benchmark

SEO
Avg: 62+15Ahead
AI Readiness
Avg: 35+35Ahead
Performance
Avg: 55+19Ahead
Security
Avg: 40+50Ahead
Accessibility
Avg: 68-16At risk

Based on 120+ websites scanned across industries. See full benchmark report →

What This Score Means for You

Most of these issues have simple, copy-paste fixes. Check the code snippets above for quick solutions.

AI visibility preview

See which brands Perplexity surfaces for your category.

Recent scans on Foglift

Scan your own site free →