SCAN COMPLETE

www.obvela.com

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

Scanned on December 28, 2025 at 01:01 PM

Share This Roast:
91
/100

Pretty solid. Minor tweaks needed.

Load Time
3.35s
HTML Size
223KB
Scripts
0
external
Images
0
Links
0
seoEssentials
50
/100
mobile
80
/100
mobileReady
100
/100
privacy
100
/100
accessibility
80
/100
seo
100
/100
bestPractices
100
/100
thirdParty
100
/100
schema
0
/100
performanceDeep
60
/100
ssl
100
/100
images
100
/100
performance
85
/100
security
10
/100

The Roast ๐Ÿ”ฅ

๐Ÿ“ฆ

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

๐Ÿ‘๏ธ

80/100 accessibility. Some users can't even use your site properly.

๐Ÿ”“

Security grade F. Your site is a hacker's playground.

๐ŸŒ

No CDN detected. Users in Australia are still waiting for your site to load.

๐Ÿ”—

Missing 2 Open Graph tags. Social sharing is half-broken.

๐Ÿ“Š

No structured data. Google has no idea what your site is about.

๐Ÿค–

Performance score of 85/100 is decent but not excellent - likely due to using Tailwind CSS via CDN instead of local build, which adds unnecessary network requests and latency

๐Ÿค–

Accessibility score of 80/100 indicates issues with color contrast, keyboard navigation, or ARIA labels that could exclude users with disabilities

๐Ÿค–

The HTML snippet shows no visible content structure after the navigation - if this represents the actual page, it's dangerously close to being a 'thin content' page that search engines might penalize

๐Ÿค–

Using a CDN for Tailwind CSS means you're loading the entire framework instead of just the classes you need, bloating page size

๐Ÿค–

The meta description says 'Perfected' but the performance and accessibility scores prove otherwise - ironic for an AI tool claiming perfection

The Fix ๐Ÿ› ๏ธ

Minify CSS filesโ–ถ Show how to fix
Fix color contrast issuesโ–ถ Show how to fix
Improve server response timeโ–ถ Show how to fix
Add Content-Security-Policy security headerโ–ถ Show how to fix
Add HTTP security headerโ–ถ Show how to fix
Add X-Frame-Options security headerโ–ถ Show how to fix
Add Schema.org structured dataโ–ถ Show how to fix
Add canonical tagsโ–ถ Show how to fix
Build Tailwind CSS locally with PurgeCSS to reduce CSS file size by 90%+ - run 'npm install tailwindcss' and configure purge in tailwind.config.jsโ–ถ Show how to fix
Run Lighthouse accessibility audit and fix specific issues: ensure all interactive elements have proper focus states, test color contrast ratios meet WCAG AA standards (4.5:1 for normal text)โ–ถ Show how to fix
Add meaningful content immediately after navigation - at minimum 300+ words of unique value proposition, use cases, or social proof to avoid thin content penaltiesโ–ถ Show how to fix
Implement lazy loading for any images not in viewport using loading='lazy' attribute or Intersection Observer APIโ–ถ Show how to fix
Add structured data (JSON-LD) for product/software to enhance search results with rich snippets - Google's Structured Data Testing Tool can validateโ–ถ Show how to fix

AI Deep Analysis ๐Ÿค–AI

AI Summary

A website selling 'perfected' AI that's imperfectly built - like a chef serving gourmet meals on paper plates.

Overall Quality:82/100

๐Ÿ” Key Insights

โ€ขPerformance score of 85/100 is decent but not excellent - likely due to using Tailwind CSS via CDN instead of local build, which adds unnecessary network requests and latency
โ€ขAccessibility score of 80/100 indicates issues with color contrast, keyboard navigation, or ARIA labels that could exclude users with disabilities
โ€ขThe HTML snippet shows no visible content structure after the navigation - if this represents the actual page, it's dangerously close to being a 'thin content' page that search engines might penalize
โ€ขUsing a CDN for Tailwind CSS means you're loading the entire framework instead of just the classes you need, bloating page size
โ€ขThe meta description says 'Perfected' but the performance and accessibility scores prove otherwise - ironic for an AI tool claiming perfection

๐Ÿ’ก AI Recommendations

1.Build Tailwind CSS locally with PurgeCSS to reduce CSS file size by 90%+ - run 'npm install tailwindcss' and configure purge in tailwind.config.js
2.Run Lighthouse accessibility audit and fix specific issues: ensure all interactive elements have proper focus states, test color contrast ratios meet WCAG AA standards (4.5:1 for normal text)
3.Add meaningful content immediately after navigation - at minimum 300+ words of unique value proposition, use cases, or social proof to avoid thin content penalties
4.Implement lazy loading for any images not in viewport using loading='lazy' attribute or Intersection Observer API
5.Add structured data (JSON-LD) for product/software to enhance search results with rich snippets - Google's Structured Data Testing Tool can validate
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://www.obvela.com/
- **Overall Score**: 91/100
- **Title**: Document has a `<title>` element
- **Description**: No description

## Performance Scores
- **Performance**: 85/100
- **SEO**: 100/100
- **Accessibility**: 80/100
- **Best Practices**: 100/100
- **Security**: 10/100
- **Mobile**: 80/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.

## ๐Ÿšจ CRITICAL ISSUES (Fix Immediately)

1. **Security grade F. Your site is a hacker's playground.**

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

1. 3.4s LCP. Google says anything over 2.5s is trash. They're not wrong.
2. 80/100 accessibility. Some users can't even use your site properly.
3. No CDN detected. Users in Australia are still waiting for your site to load.
4. Missing 2 Open Graph tags. Social sharing is half-broken.
5. No structured data. Google has no idea what your site is about.

## โšก Performance Optimizations

1. **Minify CSS files**
   ```
   Use a build tool like webpack, vite, or esbuild to minify CSS automatically.
   ```
   *You could save 4KB by minifying CSS.*

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

## ๐Ÿ” SEO Improvements

1. **Add Schema.org structured data**
   ```
   <script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "WebSite",
  "name": "Your Site Name",
  "url": "https://yoursite.com"
}
</script>
   ```
   *Structured data helps search engines understand your content and show rich snippets.*

2. **Add canonical tags**
   ```
   <link rel="canonical" href="https://yoursite.com/page">
   ```
   *Prevents duplicate content issues and consolidates SEO signals.*

## โ™ฟ Accessibility Fixes

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

## ๐Ÿ”’ Security Enhancements

1. **Add Content-Security-Policy security header**
   ```
   Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline';
   ```
   *Missing Content-Security-Policy - vulnerable to XSS attacks*

2. **Add HTTP security header**
   ```
   Add HTTP header to your server configuration
   ```
   *No HTTP Strict-Transport-Security - man-in-the-middle attacks possible*

3. **Add X-Frame-Options security header**
   ```
   X-Frame-Options: DENY
   ```
   *No X-Frame-Options - clickjacking attacks possible*

## ๐Ÿค– AI Deep Analysis Summary

A website selling 'perfected' AI that's imperfectly built - like a chef serving gourmet meals on paper plates.

### Key Insights
1. Performance score of 85/100 is decent but not excellent - likely due to using Tailwind CSS via CDN instead of local build, which adds unnecessary network requests and latency
2. Accessibility score of 80/100 indicates issues with color contrast, keyboard navigation, or ARIA labels that could exclude users with disabilities
3. The HTML snippet shows no visible content structure after the navigation - if this represents the actual page, it's dangerously close to being a 'thin content' page that search engines might penalize
4. Using a CDN for Tailwind CSS means you're loading the entire framework instead of just the classes you need, bloating page size
5. The meta description says 'Perfected' but the performance and accessibility scores prove otherwise - ironic for an AI tool claiming perfection

## ๐ŸŽฏ Keyword Optimization Opportunities

### Primary Keywords Found
1. **human-like email generator** (appears undefined times)
2. **obvela human-like email** (appears undefined times)
3. **perfected human-like email** (appears undefined times)
4. **obvela** (appears undefined times)
5. **email** (appears undefined times)
6. **emails** (appears undefined times)
7. **human-like** (appears undefined times)
8. **generator** (appears undefined times)
9. **cold** (appears undefined times)
10. **free** (appears undefined times)
11. **pricing** (appears undefined times)
12. **perfected** (appears undefined times)
13. **start** (appears undefined times)
14. **human-like email** (appears undefined times)
15. **email generator** (appears undefined times)
16. **cold emails** (appears undefined times)
17. **obvela human-like** (appears undefined times)
18. **perfected human-like** (appears undefined times)
19. **obvela human-like email generator** (appears undefined times)
20. **perfected human-like email generator** (appears undefined times)

### AI-Suggested Keywords to Target
1. automated email personalization (1,920 searches/mo)
2. ai email assistant (1,920 searches/mo)
3. cold email automation (1,920 searches/mo)
4. how to write sales emails with ai (1,267 searches/mo)
5. professional email generation software (768 searches/mo)
6. ai cold email writer (640 searches/mo)
7. email copywriting ai tools (640 searches/mo)
8. enterprise email generation platform (640 searches/mo)
9. top ai writing tools for sales (616 searches/mo)
10. best ai email generator (560 searches/mo)

## ๐Ÿ“Š Core Web Vitals

- **First Contentful Paint (FCP)**: 3355s
- **Largest Contentful Paint (LCP)**: 3355s
- **Cumulative Layout Shift (CLS)**: 0.0021643469712063035




## ๐Ÿ“„ Page Information

- **Page Size**: 0.22 KB
- **Load Time**: 3355.00s

---

## 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) Agency Tier Deep Analysis*
*Audit Date: 2025-12-28*

๐Ÿ’ก 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 ๐Ÿ’ป

Server
railway-edge

Security Analysis ๐Ÿ”’

Security Grade
F
Security Score
10/100
Missing Security Headers
โš ๏ธMissing Content-Security-Policy - vulnerable to XSS attacks
โš ๏ธNo HTTP Strict-Transport-Security - man-in-the-middle attacks possible
โš ๏ธNo X-Frame-Options - clickjacking attacks possible
โš ๏ธNo X-Content-Type-Options - MIME sniffing attacks possible
โš ๏ธNo Referrer-Policy - leaking sensitive URLs in referrer headers
โš ๏ธNo Permissions-Policy - browser features not restricted

Social Media ๐Ÿ“ฑ

Social Sharing Score
75/100
Status
โš ๏ธ Needs Work
โœ…
OG Title
โœ…
OG Description
โœ…
OG Image
โŒ
Twitter Card
2 issues found. Check "The Fix" section for details.

Image Optimization ๐Ÿ–ผ๏ธ

Total Images
0
Missing Alt
0
Unoptimized
0
Score
100/100
WebP
0
PNG
0
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
47 chars
H1 Count
2
SEO Score
50/100

Structured Data ๐Ÿ“Š

Has Schema
โŒ
Items Found
0
Score
0/100

Performance Deep Dive โšก

Compression
None
Caching
โŒ
Total Resources
4
Score
60/100
Scripts: 2 | Styles: 2 | Images: 0

Third-Party Scripts ๐Ÿ“ฆ

Total Scripts
1
Tracking
0
Score
100/100
Detected Domains:
cdn.tailwindcss.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
human-like email generator1,92035/100$0.50HIGH
obvela human-like email1,92035/100$0.50HIGH
perfected human-like email1,92035/100$0.50HIGH
obvela12,80065/100$0.50MEDIUM
email12,80065/100$0.50MEDIUM
emails12,80065/100$0.50MEDIUM
human-like12,80065/100$0.50MEDIUM
generator12,80065/100$0.50MEDIUM
cold12,80065/100$0.50MEDIUM
free12,80075/100$1.30MEDIUM
pricing12,80065/100$0.50MEDIUM
perfected12,80065/100$0.50MEDIUM
start12,80075/100$1.30MEDIUM
human-like email4,80050/100$0.50MEDIUM
email generator4,80050/100$0.50MEDIUM
cold emails4,80050/100$0.50MEDIUM
obvela human-like4,80050/100$0.50MEDIUM
perfected human-like4,80050/100$0.50MEDIUM
obvela human-like email generator64020/100$0.50MEDIUM
perfected human-like email generator64020/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
โ†’ automated email personalization1,92035/100$0.50HIGH
โ†’ ai email assistant1,92035/100$0.50HIGH
โ†’ cold email automation1,92035/100$0.50HIGH
โ†’ how to write sales emails with ai1,26740/100$2.00MEDIUM
โ†’ professional email generation software76840/100$0.50MEDIUM
โ†’ ai cold email writer64020/100$0.50MEDIUM
โ†’ email copywriting ai tools64020/100$0.50MEDIUM
โ†’ enterprise email generation platform64020/100$0.50MEDIUM
โ†’ top ai writing tools for sales61670/100$2.50MEDIUM
โ†’ best ai email generator56045/100$1.00MEDIUM

๐Ÿ“Š 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