SCAN COMPLETE

roastweb.com

๐Ÿ”ฅ Website Scan ยท Score 93/100

Scanned on January 4, 2026 at 08:02 PM

Share This Roast:
93
/100

Pretty solid. Minor tweaks needed.

Load Time
4.66s
HTML Size
617KB
Scripts
0
external
Images
0
Links
0
thirdParty
100
/100
schema
100
/100
performanceDeep
85
/100
seo
92
/100
accessibility
96
/100
performance
85
/100
mobileReady
100
/100
privacy
100
/100
ssl
100
/100
bestPractices
100
/100
seoEssentials
90
/100
security
100
/100
mobile
96
/100
images
100
/100

The Roast ๐Ÿ”ฅ

๐Ÿ“ฆ

3.5s LCP. Google says anything over 2.5s is trash. They're not wrong.

๐Ÿค–

The HTML snippet shows 12 async script tags loading simultaneously - this is a performance disaster waiting to happen, especially on slower connections or mobile devices. The 'preload' for fonts and images is good, but the script loading strategy is amateur hour.

๐Ÿค–

The meta description is missing from the provided HTML snippet - for an SEO tool claiming 92/100 SEO score, this is embarrassing and hypocritical. First impressions matter, and this looks sloppy.

๐Ÿค–

The CSS is split across multiple files (f1b25203289ef92f.css and 9771ca18f19fa1c3.css) which adds extra HTTP requests - for a performance optimization tool, this is ironic and counterproductive.

๐Ÿค–

The H1 'FINALLY UNDERSTAND WHY YOUR SITE IS SLOW IN PLAIN ENGLISH' is actually excellent - clear, benefit-focused, and matches the tool's value proposition perfectly. This is one thing they got right.

๐Ÿค–

The background color is hard-coded inline (style='background-color:#0A0A0A') instead of using CSS classes - this is lazy development practice for a Next.js application and makes maintenance harder.

The Fix ๐Ÿ› ๏ธ

Fix color contrast issuesโ–ถ Show how to fix
Improve server response timeโ–ถ Show how to fix
Implement script bundling or code splitting properly. Combine those 12 async scripts into logical bundles. Use Next.js dynamic imports for code splitting instead of this spaghetti approach. Start with: `import dynamic from 'next/dynamic'` for non-critical components.โ–ถ Show how to fix
Add proper meta description immediately. The description should be: `<meta name='description' content='Free website performance audit tool. Analyze site speed, technical SEO, Core Web Vitals, accessibility & security. Get actionable fixes in 10 seconds.' />` - it's literally in their marketing copy but missing from HTML.โ–ถ Show how to fix
Merge the CSS files or implement proper CSS modules. For Next.js, use CSS modules or Tailwind properly instead of multiple global CSS files. Run: `npm run build` and analyze the bundle output to identify CSS duplication.โ–ถ Show how to fix
Move inline styles to CSS classes. Create a proper dark theme class instead of inline styles. Example: `.dark-theme { background-color: #0A0A0A; }` then apply to html element.โ–ถ Show how to fix
Implement proper font loading strategy. The preload is good, but add font-display: swap in your font-face declarations to prevent FOIT (Flash of Invisible Text).โ–ถ Show how to fix

AI Deep Analysis ๐Ÿค–AI

AI Summary

A performance tool that can't manage its own script loading is like a fitness coach who can't climb stairs - the irony is thicker than their missing meta description.

Overall Quality:72/100

๐Ÿ” Key Insights

โ€ขThe HTML snippet shows 12 async script tags loading simultaneously - this is a performance disaster waiting to happen, especially on slower connections or mobile devices. The 'preload' for fonts and images is good, but the script loading strategy is amateur hour.
โ€ขThe meta description is missing from the provided HTML snippet - for an SEO tool claiming 92/100 SEO score, this is embarrassing and hypocritical. First impressions matter, and this looks sloppy.
โ€ขThe CSS is split across multiple files (f1b25203289ef92f.css and 9771ca18f19fa1c3.css) which adds extra HTTP requests - for a performance optimization tool, this is ironic and counterproductive.
โ€ขThe H1 'FINALLY UNDERSTAND WHY YOUR SITE IS SLOW IN PLAIN ENGLISH' is actually excellent - clear, benefit-focused, and matches the tool's value proposition perfectly. This is one thing they got right.
โ€ขThe background color is hard-coded inline (style='background-color:#0A0A0A') instead of using CSS classes - this is lazy development practice for a Next.js application and makes maintenance harder.

๐Ÿ’ก AI Recommendations

1.Implement script bundling or code splitting properly. Combine those 12 async scripts into logical bundles. Use Next.js dynamic imports for code splitting instead of this spaghetti approach. Start with: `import dynamic from 'next/dynamic'` for non-critical components.
2.Add proper meta description immediately. The description should be: `<meta name='description' content='Free website performance audit tool. Analyze site speed, technical SEO, Core Web Vitals, accessibility & security. Get actionable fixes in 10 seconds.' />` - it's literally in their marketing copy but missing from HTML.
3.Merge the CSS files or implement proper CSS modules. For Next.js, use CSS modules or Tailwind properly instead of multiple global CSS files. Run: `npm run build` and analyze the bundle output to identify CSS duplication.
4.Move inline styles to CSS classes. Create a proper dark theme class instead of inline styles. Example: `.dark-theme { background-color: #0A0A0A; }` then apply to html element.
5.Implement proper font loading strategy. The preload is good, but add font-display: swap in your font-face declarations to prevent FOIT (Flash of Invisible Text).
Generated by DeepSeek AI โ€ข Extended reasoning mode

AI Fix Prompt ๐Ÿค–

Agency Tier

Copy this professional prompt and paste it into Claude, ChatGPT, Cursor, or any AI coding assistant to get specific implementation help for all issues found:

# Website Audit & Fix Implementation Plan

## Website Information
- **URL**: https://roastweb.com/
- **Overall Score**: 93/100
- **Title**: Document has a `<title>` element
- **Description**: No description

## Performance Scores
- **Performance**: 85/100
- **SEO**: 92/100
- **Accessibility**: 96/100
- **Best Practices**: 100/100
- **Security**: 100/100
- **Mobile**: 96/100

---

## Task Overview
I need you to help me fix all the issues identified in my website audit. Below is a comprehensive list of all problems organized by priority and category. Please provide specific, actionable code fixes for each issue.

## โš ๏ธ  WARNINGS (High Priority)

1. 3.5s LCP. Google says anything over 2.5s is trash. They're not wrong.

## โšก Performance Optimizations

1. **Improve server response time**
   *Use a CDN, optimize backend queries, and implement caching strategies.*

## โ™ฟ Accessibility Fixes

1. **Fix color contrast issues**
   *Some text doesn't have enough contrast with its background, making it hard to read.*

## ๐Ÿค– AI Deep Analysis Summary

A performance tool that can't manage its own script loading is like a fitness coach who can't climb stairs - the irony is thicker than their missing meta description.

### Key Insights
1. The HTML snippet shows 12 async script tags loading simultaneously - this is a performance disaster waiting to happen, especially on slower connections or mobile devices. The 'preload' for fonts and images is good, but the script loading strategy is amateur hour.
2. The meta description is missing from the provided HTML snippet - for an SEO tool claiming 92/100 SEO score, this is embarrassing and hypocritical. First impressions matter, and this looks sloppy.
3. The CSS is split across multiple files (f1b25203289ef92f.css and 9771ca18f19fa1c3.css) which adds extra HTTP requests - for a performance optimization tool, this is ironic and counterproductive.
4. The H1 'FINALLY UNDERSTAND WHY YOUR SITE IS SLOW IN PLAIN ENGLISH' is actually excellent - clear, benefit-focused, and matches the tool's value proposition perfectly. This is one thing they got right.
5. The background color is hard-coded inline (style='background-color:#0A0A0A') instead of using CSS classes - this is lazy development practice for a Next.js application and makes maintenance harder.

## ๐ŸŽฏ Keyword Optimization Opportunities

### Primary Keywords Found
1. **core web vitals** - 2,304 monthly searches, Difficulty: 43/100, Opportunity: HIGH
2. **web** - 15,360 monthly searches, Difficulty: 73/100, Opportunity: MEDIUM
3. **tool** - 15,360 monthly searches, Difficulty: 73/100, Opportunity: MEDIUM
4. **speed** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
5. **seo** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
6. **site** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
7. **technical** - 12,800 monthly searches, Difficulty: 77/100, Opportunity: MEDIUM
8. **audit** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
9. **vitals** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
10. **optimization** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
11. **performance** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
12. **core** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
13. **understand** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
14. **plain** - 12,800 monthly searches, Difficulty: 65/100, Opportunity: MEDIUM
15. **website** - 6,720 monthly searches, Difficulty: 95/100, Opportunity: MEDIUM
16. **web vitals** - 5,760 monthly searches, Difficulty: 58/100, Opportunity: MEDIUM
17. **audit tool** - 5,760 monthly searches, Difficulty: 58/100, Opportunity: MEDIUM
18. **core web** - 5,760 monthly searches, Difficulty: 58/100, Opportunity: MEDIUM
19. **technical seo** - 4,800 monthly searches, Difficulty: 62/100, Opportunity: MEDIUM
20. **site speed** - 4,800 monthly searches, Difficulty: 50/100, Opportunity: MEDIUM

### AI-Suggested Keywords to Target
1. how to improve core web vitals (1,382 searches/mo)
2. technical seo audit services (640 searches/mo)
3. mobile site speed optimization (640 searches/mo)
4. web performance diagnostics (2,304 searches/mo)
5. page speed improvement (1,920 searches/mo)
6. lighthouse performance optimization (1,920 searches/mo)
7. website performance optimization (1,008 searches/mo)
8. best seo performance checker (560 searches/mo)
9. website speed test tool (336 searches/mo)
10. website loading time analysis (336 searches/mo)

## ๐Ÿ“Š Core Web Vitals

- **First Contentful Paint (FCP)**: 1.2s
- **Largest Contentful Paint (LCP)**: 3.5s
- **Cumulative Layout Shift (CLS)**: 0.022
- **Total Blocking Time (TBT)**: 264ms



## ๐Ÿ“„ Page Information

- **Page Size**: 617.00 KB
- **Load Time**: 4.66s

---

## Instructions for Implementation

Please help me implement fixes for all the issues listed above. For each fix:

1. **Provide specific code changes** with before/after examples
2. **Explain why** the change improves the website
3. **Include file paths** where changes should be made (if you can infer them)
4. **Prioritize fixes** by impact (critical issues first)
5. **Consider modern best practices** for web development
6. **Ensure fixes are production-ready** and tested

If you need more context about my tech stack or specific implementation details, please ask. I'm ready to implement these changes to improve my website's performance, SEO, accessibility, and security.

---

*This prompt was generated by [RoastWeb](https://roastweb.com) - AI-Powered Website Audits*
*Audit Date: 2026-01-04*

๐Ÿ’ก How to use this prompt:

  1. Click "Copy Prompt" above
  2. Open Claude, ChatGPT, Cursor, or your favorite AI coding assistant
  3. Paste the prompt and press Enter
  4. Get specific code fixes, implementation guidance, and best practices

Tech Stack ๐Ÿ’ป

Framework
Next.js
CDN
Cloudflare
Server
cloudflare

Security Analysis ๐Ÿ”’

Security Grade
A
Security Score
100/100

Social Media ๐Ÿ“ฑ

Social Sharing Score
100/100
Status
โœ… Good
โœ…
OG Title
โœ…
OG Description
โœ…
OG Image
โœ…
Twitter Card

Image Optimization ๐Ÿ–ผ๏ธ

Total Images
1
Missing Alt
0
Unoptimized
2
Score
100/100
WebP
0
PNG
1
JPG
0
GIF
0
SVG
0
Other
0

SSL/TLS Security ๐Ÿ”

HTTPS
โœ…
Mixed Content
โœ…
HTTP Redirect
โœ…
Grade
A

SEO Essentials ๐ŸŽฏ

โœ…
Sitemap
โœ…
Robots.txt
โœ…
Canonical
โœ…
Meta Desc
Title Length
61 chars
H1 Count
1
SEO Score
90/100

Structured Data ๐Ÿ“Š

Has Schema
โœ…
Items Found
3
Score
100/100
Types:
OrganizationWebSiteSoftwareApplication

Performance Deep Dive โšก

Compression
br
Caching
โœ…
Total Resources
18
Score
85/100
Scripts: 15 | Styles: 2 | Images: 1

Third-Party Scripts ๐Ÿ“ฆ

Total Scripts
1
Tracking
0
Score
100/100
Detected Domains:
static.cloudflareinsights.com

Mobile Responsiveness ๐Ÿ“ฑ

Viewport Tag
โœ…
Responsive
โœ…
Touch Friendly
โœ…
Score
100/100

Privacy & GDPR ๐Ÿ›ก๏ธ

Cookie Notice
โŒ
Privacy Policy
โœ…
Cookie Scripts
0
Compliance Score
100/100

Keyword Research & Targeting ๐ŸŽฏAGENCY

๐Ÿ”‘ Primary Keywords Detected

Keywords extracted from your page content with live search metrics from DataForSEO

KeywordMonthly VolumeDifficultyCPCOpportunity
core web vitals2,30443/100$0.50HIGH
web15,36073/100$0.50MEDIUM
tool15,36073/100$0.50MEDIUM
speed12,80065/100$0.50MEDIUM
seo12,80065/100$0.50MEDIUM
site12,80065/100$0.50MEDIUM
technical12,80077/100$0.50MEDIUM
audit12,80065/100$0.50MEDIUM
vitals12,80065/100$0.50MEDIUM
optimization12,80065/100$0.50MEDIUM
performance12,80065/100$0.50MEDIUM
core12,80065/100$0.50MEDIUM
understand12,80065/100$0.50MEDIUM
plain12,80065/100$0.50MEDIUM
website6,72095/100N/AMEDIUM
web vitals5,76058/100$0.50MEDIUM
audit tool5,76058/100$0.50MEDIUM
core web5,76058/100$0.50MEDIUM
technical seo4,80062/100$0.50MEDIUM
site speed4,80050/100$0.50MEDIUM

๐Ÿค– AI-Suggested Keyword OpportunitiesAI-POWERED

Related keywords you should target but aren't currently using - suggested by Claude AI

Suggested KeywordMonthly VolumeDifficultyCPCOpportunity
โ†’ how to improve core web vitals1,38223/100$0.50๐ŸŽฏ EASY WIN
โ†’ technical seo audit services64032/100$0.50๐ŸŽฏ EASY WIN
โ†’ mobile site speed optimization64020/100$0.50๐ŸŽฏ EASY WIN
โ†’ web performance diagnostics2,30443/100$0.50HIGH
โ†’ page speed improvement1,92035/100$0.50HIGH
โ†’ lighthouse performance optimization1,92035/100$0.50HIGH
โ†’ website performance optimization1,00883/100N/AMEDIUM
โ†’ best seo performance checker56045/100$1.00MEDIUM
โ†’ website speed test tool33668/100N/AMEDIUM
โ†’ website loading time analysis33668/100N/AMEDIUM

๐Ÿ“Š Keyword Strategy Recommendations

  • Focus on high-opportunity keywords (green badges) for quick ranking wins
  • Low difficulty (<40) keywords are easier to rank for in 3-6 months
  • High CPC indicates commercial intent - these keywords drive conversions
  • Create dedicated landing pages optimized for your primary keywords
  • Use these keywords in your title tags, H1s, and meta descriptions

THINK YOUR SITE IS BETTER?

Get your free brutal audit in 10 seconds

Join 10,000+ developers who've been roasted

Powered by ROASTWEB