SCAN COMPLETE

www.dragonfly.xyz

πŸ”₯ Website Scan Β· Score 82/100

Scanned on December 29, 2025 at 08:08 AM

Share This Roast:
82
/100

Pretty solid. Minor tweaks needed.

Load Time
5.47s
HTML Size
1.2MB
Scripts
0
external
Images
0
Links
0
images
40
/100
mobile
94
/100
seo
92
/100
performanceDeep
85
/100
mobileReady
100
/100
security
55
/100
seoEssentials
55
/100
schema
0
/100
ssl
70
/100
bestPractices
100
/100
accessibility
94
/100
thirdParty
100
/100
privacy
70
/100
performance
59
/100

The Roast πŸ”₯

⏰

59/100 performance. Mediocre is not a strategy.

πŸ‹οΈ

5.3s to show main content? Users are leaving before they even see your page.

⏸️

479ms of blocked main thread. Time to put that JS on a diet.

πŸ”“

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

πŸ–ΌοΈ

12 images missing alt text, 48 not optimized. Amateur hour.

⚠️

Mixed content detected. HTTPS page loading HTTP resources. Pick a lane.

πŸ“Š

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

πŸ“œ

No privacy policy link. Legally required, but who needs compliance?

πŸ€–

Performance score of 59/100 is embarrassingly low for a Next.js site - likely due to massive image payloads and poor optimization

πŸ€–

H1 tag 'Dragonfly backsyour favoritecrypto projects' has missing spaces between words - looks amateurish and unprofessional

πŸ€–

Meta keywords are outdated SEO practice and waste bytes - 'cryptoasset,investment,firm,fund,global,crypto' adds zero value

πŸ€–

Preloading header logo image at multiple sizes (640w, 750w, 828w) is overkill for a simple logo - wasting critical initial load bandwidth

πŸ€–

HTML snippet shows excessive meta tags including 'x-dns-prefetch-control: off' which actively hurts performance by disabling DNS prefetching

The Fix πŸ› οΈ

Optimize JavaScript deliveryβ–Ά Show how to fix
Improve server response timeβ–Ά Show how to fix
Add Content-Security-Policy security headerβ–Ά Show how to fix
Add Referrer-Policy security headerβ–Ά Show how to fix
Add Permissions-Policy security headerβ–Ά Show how to fix
Add alt text to all imagesβ–Ά Show how to fix
Add Schema.org structured dataβ–Ά Show how to fix
Add canonical tagsβ–Ά Show how to fix
Fix the broken H1 tag immediately - change to 'Dragonfly backs your favorite crypto projects' with proper spacingβ–Ά Show how to fix
Remove all meta keywords and redundant meta tags (geo.region, x-dns-prefetch-control, Window-Target) - they're dead weightβ–Ά Show how to fix
Optimize hero image from 2400x1260 to max 1200px width with WebP format and proper compression - current 2400px is absurd overkillβ–Ά Show how to fix
Replace image preload with proper Next.js Image component optimization - remove manual srcset preloading for static assetsβ–Ά Show how to fix
Implement proper code splitting and lazy loading for below-the-fold content - performance score suggests massive render-blocking resourcesβ–Ά Show how to fix

AI Deep Analysis πŸ€–AI

AI Summary

A crypto investment firm with a website that performs like it's running on dial-up - great SEO can't save you when users bounce from slow loading times.

Overall Quality:65/100

πŸ” Key Insights

β€’Performance score of 59/100 is embarrassingly low for a Next.js site - likely due to massive image payloads and poor optimization
β€’H1 tag 'Dragonfly backsyour favoritecrypto projects' has missing spaces between words - looks amateurish and unprofessional
β€’Meta keywords are outdated SEO practice and waste bytes - 'cryptoasset,investment,firm,fund,global,crypto' adds zero value
β€’Preloading header logo image at multiple sizes (640w, 750w, 828w) is overkill for a simple logo - wasting critical initial load bandwidth
β€’HTML snippet shows excessive meta tags including 'x-dns-prefetch-control: off' which actively hurts performance by disabling DNS prefetching

πŸ’‘ AI Recommendations

1.Fix the broken H1 tag immediately - change to 'Dragonfly backs your favorite crypto projects' with proper spacing
2.Remove all meta keywords and redundant meta tags (geo.region, x-dns-prefetch-control, Window-Target) - they're dead weight
3.Optimize hero image from 2400x1260 to max 1200px width with WebP format and proper compression - current 2400px is absurd overkill
4.Replace image preload with proper Next.js Image component optimization - remove manual srcset preloading for static assets
5.Implement proper code splitting and lazy loading for below-the-fold content - performance score suggests massive render-blocking resources
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.dragonfly.xyz/
- **Overall Score**: 82/100
- **Title**: Document has a `<title>` element
- **Description**: No description

## Performance Scores
- **Performance**: 59/100
- **SEO**: 92/100
- **Accessibility**: 94/100
- **Best Practices**: 100/100
- **Security**: 55/100
- **Mobile**: 94/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. **5.3s to show main content? Users are leaving before they even see your page.**
2. **Security grade D. Your site is a hacker's playground.**
3. **12 images missing alt text, 48 not optimized. Amateur hour.**

## ⚠️  WARNINGS (High Priority)

1. 59/100 performance. Mediocre is not a strategy.
2. 479ms of blocked main thread. Time to put that JS on a diet.
3. Mixed content detected. HTTPS page loading HTTP resources. Pick a lane.
4. No structured data. Google has no idea what your site is about.
5. No privacy policy link. Legally required, but who needs compliance?

## ⚑ Performance Optimizations

1. **Optimize JavaScript delivery**
   *Defer non-critical JavaScript, code-split large bundles, and remove unused dependencies.*

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. **Add alt text to all images**
   ```
   <img src="photo.jpg" alt="Descriptive text about the image" loading="lazy">
   ```
   *12 images are missing alt text. Required for accessibility and SEO.*

## πŸ”’ 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 Referrer-Policy security header**
   ```
   Referrer-Policy: strict-origin-when-cross-origin
   ```
   *No Referrer-Policy - leaking sensitive URLs in referrer headers*

3. **Add Permissions-Policy security header**
   ```
   Permissions-Policy: geolocation=(), microphone=(), camera=()
   ```
   *No Permissions-Policy - browser features not restricted*

## πŸ€– AI Deep Analysis Summary

A crypto investment firm with a website that performs like it's running on dial-up - great SEO can't save you when users bounce from slow loading times.

### Key Insights
1. Performance score of 59/100 is embarrassingly low for a Next.js site - likely due to massive image payloads and poor optimization
2. H1 tag 'Dragonfly backsyour favoritecrypto projects' has missing spaces between words - looks amateurish and unprofessional
3. Meta keywords are outdated SEO practice and waste bytes - 'cryptoasset,investment,firm,fund,global,crypto' adds zero value
4. Preloading header logo image at multiple sizes (640w, 750w, 828w) is overkill for a simple logo - wasting critical initial load bandwidth
5. HTML snippet shows excessive meta tags including 'x-dns-prefetch-control: off' which actively hurts performance by disabling DNS prefetching

## 🎯 Keyword Optimization Opportunities

### Primary Keywords Found
1. **dragonfly backsyour favoritecrypto** (appears undefined times)
2. **backsyour favoritecrypto projects** (appears undefined times)
3. **dragonfly** (appears undefined times)
4. **projects** (appears undefined times)
5. **global** (appears undefined times)
6. **backsyour** (appears undefined times)
7. **favoritecrypto** (appears undefined times)
8. **one** (appears undefined times)
9. **crypto** (appears undefined times)
10. **fromday** (appears undefined times)
11. **backs** (appears undefined times)
12. **favorite** (appears undefined times)
13. **day** (appears undefined times)
14. **dragonfly backsyour** (appears undefined times)
15. **backsyour favoritecrypto** (appears undefined times)
16. **favoritecrypto projects** (appears undefined times)
17. **dragonfly backs** (appears undefined times)
18. **backs favorite** (appears undefined times)
19. **favorite crypto** (appears undefined times)
20. **dragonfly backsyour favoritecrypto projects** (appears undefined times)

### AI-Suggested Keywords to Target
1. crypto portfolio management (1,920 searches/mo)
2. blockchain startup funding (1,536 searches/mo)
3. how to invest in crypto startups (1,382 searches/mo)
4. web3 investment strategies (2,880 searches/mo)
5. top crypto investors (2,520 searches/mo)
6. blockchain investment fund (2,304 searches/mo)
7. emerging blockchain investments (2,304 searches/mo)
8. crypto venture capital (1,152 searches/mo)
9. web3 venture capital (1,152 searches/mo)
10. best crypto investment firms (840 searches/mo)

## πŸ“Š Core Web Vitals

- **First Contentful Paint (FCP)**: 3017s
- **Largest Contentful Paint (LCP)**: 5327s
- **Cumulative Layout Shift (CLS)**: 0
- **Total Blocking Time (TBT)**: 479ms



## πŸ“„ Page Information

- **Page Size**: 1.17 KB
- **Load Time**: 5469.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-29*

πŸ’‘ 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
Analytics
Google Analytics

Security Analysis πŸ”’

Security Grade
D
Security Score
55/100
Missing Security Headers
⚠️Missing Content-Security-Policy - vulnerable to XSS attacks
⚠️No Referrer-Policy - leaking sensitive URLs in referrer headers
⚠️No Permissions-Policy - browser features not restricted

Social Media πŸ“±

Social Sharing Score
90/100
Status
βœ… Good
βœ…
OG Title
βœ…
OG Description
βœ…
OG Image
βœ…
Twitter Card
1 issue found. Check "The Fix" section for details.

Image Optimization πŸ–ΌοΈ

Total Images
59
Missing Alt
12
Unoptimized
48
Score
40/100
WebP
0
PNG
48
JPG
11
GIF
0
SVG
0
Other
0

SSL/TLS Security πŸ”

HTTPS
βœ…
Mixed Content
⚠️
HTTP Redirect
βœ…
Grade
B

SEO Essentials 🎯

βœ…
Sitemap
βœ…
Robots.txt
❌
Canonical
βœ…
Meta Desc
Title Length
9 chars
H1 Count
4
SEO Score
55/100

Structured Data πŸ“Š

Has Schema
❌
Items Found
0
Score
0/100

Performance Deep Dive ⚑

Compression
br
Caching
βœ…
Total Resources
76
Score
85/100
Scripts: 14 | Styles: 3 | Images: 59

Third-Party Scripts πŸ“¦

Total Scripts
2
Tracking
1
Score
100/100
Detected Domains:
www.googletagmanager.com
static.cloudflareinsights.com

Mobile Responsiveness πŸ“±

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

Privacy & GDPR πŸ›‘οΈ

Cookie Notice
❌
Privacy Policy
❌
Cookie Scripts
0
Compliance Score
70/100

Keyword Research & Targeting 🎯AGENCY

πŸ”‘ Primary Keywords Detected

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

KeywordMonthly VolumeDifficultyCPCOpportunity
dragonfly backsyour favoritecrypto1,92035/100$0.50HIGH
backsyour favoritecrypto projects1,92035/100$0.50HIGH
dragonfly12,80065/100$0.50MEDIUM
projects12,80065/100$0.50MEDIUM
global12,80065/100$0.50MEDIUM
backsyour12,80065/100$0.50MEDIUM
favoritecrypto12,80065/100$0.50MEDIUM
one12,80065/100$0.50MEDIUM
crypto12,80065/100$0.50MEDIUM
fromday12,80065/100$0.50MEDIUM
backs12,80065/100$0.50MEDIUM
favorite12,80065/100$0.50MEDIUM
day12,80065/100$0.50MEDIUM
dragonfly backsyour4,80050/100$0.50MEDIUM
backsyour favoritecrypto4,80050/100$0.50MEDIUM
favoritecrypto projects4,80050/100$0.50MEDIUM
dragonfly backs4,80050/100$0.50MEDIUM
backs favorite4,80050/100$0.50MEDIUM
favorite crypto4,80050/100$0.50MEDIUM
dragonfly backsyour favoritecrypto projects64020/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
β†’ crypto portfolio management1,92035/100$0.50HIGH
β†’ blockchain startup funding1,53635/100$1.30HIGH
β†’ how to invest in crypto startups1,38235/100$1.30HIGH
β†’ web3 investment strategies2,88055/100$0.50MEDIUM
β†’ top crypto investors2,52080/100$1.00MEDIUM
β†’ blockchain investment fund2,30445/100$0.50MEDIUM
β†’ emerging blockchain investments2,30445/100$0.50MEDIUM
β†’ crypto venture capital1,15240/100$0.50MEDIUM
β†’ web3 venture capital1,15240/100$0.50MEDIUM
β†’ best crypto investment firms84065/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