moodscan-app.vercel.app
Scanned on January 4, 2026 at 04:37 AM
Not bad! But not great.
The Roast π₯
3.2s LCP. Google says anything over 2.5s is trash. They're not wrong.
87/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.
Social media score: 0/100. Your links look like garbage when shared.
No structured data. Google has no idea what your site is about.
No sitemap.xml. Search engines are playing hide and seek with your content.
No H1 heading. Did you forget the most basic HTML tag?
No privacy policy link. Legally required, but who needs compliance?
The Fix π οΈ
AI Fix Prompt π€
Agency TierCopy 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://moodscan-app.vercel.app/
- **Overall Score**: 80/100
- **Title**: Document has a `<title>` element
- **Description**: No description
## Performance Scores
- **Performance**: 86/100
- **SEO**: 100/100
- **Accessibility**: 87/100
- **Best Practices**: 100/100
- **Security**: 30/100
- **Mobile**: 87/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.**
2. **Social media score: 0/100. Your links look like garbage when shared.**
3. **No H1 heading. Did you forget the most basic HTML tag?**
## β οΈ WARNINGS (High Priority)
1. 3.2s LCP. Google says anything over 2.5s is trash. They're not wrong.
2. 87/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. No structured data. Google has no idea what your site is about.
5. No sitemap.xml. Search engines are playing hide and seek with your content.
6. No privacy policy link. Legally required, but who needs compliance?
## β‘ Performance Optimizations
1. **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. **Create sitemap.xml**
```
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://yoursite.com/</loc>
</url>
</urlset>
```
*Generate a sitemap and submit it to Google Search Console.*
3. **Add canonical tags**
```
<link rel="canonical" href="https://yoursite.com/page">
```
*Prevents duplicate content issues and consolidates SEO signals.*
## π 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 X-Frame-Options security header**
```
X-Frame-Options: DENY
```
*No X-Frame-Options - clickjacking attacks possible*
3. **Add X-Content-Type-Options security header**
```
X-Content-Type-Options: nosniff
```
*No X-Content-Type-Options - MIME sniffing attacks possible*
## π§ Additional Improvements
1. **Add Open Graph image**
```
<meta property="og:image" content="https://yourdomain.com/og-image.jpg">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
```
*Create a 1200x630px image for social media previews. This dramatically improves click-through rates.*
2. **Add Open Graph title**
```
<meta property="og:title" content="Your compelling title here">
```
*Separate from page title, this appears in social media previews.*
## π― Keyword Optimization Opportunities
### Primary Keywords Found
1. **_next static chunks 501f4f1c6c42cd35** (appears undefined times)
2. **_next static chunks** (appears undefined times)
3. **static chunks 501f4f1c6c42cd35** (appears undefined times)
4. **_next** (appears undefined times)
5. **static** (appears undefined times)
6. **chunks** (appears undefined times)
7. **undefined** (appears undefined times)
8. **501f4f1c6c42cd35** (appears undefined times)
9. **self** (appears undefined times)
10. **__next_f** (appears undefined times)
11. **20eba7ad151dc355** (appears undefined times)
12. **default** (appears undefined times)
13. **css** (appears undefined times)
14. **woff2** (appears undefined times)
15. **font** (appears undefined times)
16. **crossorigin** (appears undefined times)
17. **_next static** (appears undefined times)
18. **static chunks** (appears undefined times)
19. **chunks 501f4f1c6c42cd35** (appears undefined times)
20. **self __next_f** (appears undefined times)
### AI-Suggested Keywords to Target
1. how to use ai for emotional intelligence (1,152 searches/mo)
2. artificial intelligence mood detection (640 searches/mo)
3. ai emotional wellness technology (640 searches/mo)
4. emotional intelligence technology (1,920 searches/mo)
5. mental health ai scanner (896 searches/mo)
6. ai mood tracker app (768 searches/mo)
7. digital mood tracking services (768 searches/mo)
8. personal mood analytics software (768 searches/mo)
9. best ai mood analysis tools (560 searches/mo)
10. top mood analysis apps (560 searches/mo)
## π Core Web Vitals
- **First Contentful Paint (FCP)**: 2.7s
- **Largest Contentful Paint (LCP)**: 3.2s
- **Cumulative Layout Shift (CLS)**: 0.000
- **Total Blocking Time (TBT)**: 17ms
## π Page Information
- **Page Size**: 456.00 KB
- **Load Time**: 3.25s
---
## 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:
- Click "Copy Prompt" above
- Open Claude, ChatGPT, Cursor, or your favorite AI coding assistant
- Paste the prompt and press Enter
- Get specific code fixes, implementation guidance, and best practices
Tech Stack π»
Security Analysis π
Social Media π±
Image Optimization πΌοΈ
SSL/TLS Security π
SEO Essentials π―
Structured Data π
Performance Deep Dive β‘
Third-Party Scripts π¦
Mobile Responsiveness π±
Privacy & GDPR π‘οΈ
Keyword Research & Targeting π―AGENCY
π Primary Keywords Detected
Keywords extracted from your page content with live search metrics from DataForSEO
| Keyword | Monthly Volume | Difficulty | CPC | Opportunity |
|---|---|---|---|---|
| _next static chunks 501f4f1c6c42cd35 | 640 | 20/100 | $0.50 | π― EASY WIN |
| _next static chunks | 1,920 | 35/100 | $0.50 | HIGH |
| static chunks 501f4f1c6c42cd35 | 1,920 | 35/100 | $0.50 | HIGH |
| _next | 12,800 | 65/100 | $0.50 | MEDIUM |
| static | 12,800 | 65/100 | $0.50 | MEDIUM |
| chunks | 12,800 | 65/100 | $0.50 | MEDIUM |
| undefined | 12,800 | 65/100 | $0.50 | MEDIUM |
| 501f4f1c6c42cd35 | 12,800 | 65/100 | $0.50 | MEDIUM |
| self | 12,800 | 65/100 | $0.50 | MEDIUM |
| __next_f | 12,800 | 65/100 | $0.50 | MEDIUM |
| 20eba7ad151dc355 | 12,800 | 65/100 | $0.50 | MEDIUM |
| default | 12,800 | 65/100 | $0.50 | MEDIUM |
| css | 12,800 | 65/100 | $0.50 | MEDIUM |
| woff2 | 12,800 | 65/100 | $0.50 | MEDIUM |
| font | 12,800 | 65/100 | $0.50 | MEDIUM |
| crossorigin | 12,800 | 65/100 | $0.50 | MEDIUM |
| _next static | 4,800 | 50/100 | $0.50 | MEDIUM |
| static chunks | 4,800 | 50/100 | $0.50 | MEDIUM |
| chunks 501f4f1c6c42cd35 | 4,800 | 50/100 | $0.50 | MEDIUM |
| self __next_f | 4,800 | 50/100 | $0.50 | MEDIUM |
π€ AI-Suggested Keyword OpportunitiesAI-POWERED
Related keywords you should target but aren't currently using - suggested by Claude AI
| Suggested Keyword | Monthly Volume | Difficulty | CPC | Opportunity |
|---|---|---|---|---|
| β how to use ai for emotional intelligence | 1,152 | 15/100 | $0.50 | π― EASY WIN |
| β artificial intelligence mood detection | 640 | 20/100 | $0.50 | π― EASY WIN |
| β ai emotional wellness technology | 640 | 32/100 | $0.50 | π― EASY WIN |
| β emotional intelligence technology | 1,920 | 47/100 | $0.50 | HIGH |
| β mental health ai scanner | 896 | 35/100 | $0.50 | MEDIUM |
| β ai mood tracker app | 768 | 40/100 | $0.50 | MEDIUM |
| β digital mood tracking services | 768 | 40/100 | $0.50 | MEDIUM |
| β personal mood analytics software | 768 | 40/100 | $0.50 | MEDIUM |
| β best ai mood analysis tools | 560 | 45/100 | $1.00 | MEDIUM |
| β top mood analysis apps | 560 | 57/100 | $1.00 | MEDIUM |
π 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