PromptBase
Upgrade
Close icon
General
Home
Marketplace
Create
Hire
Login
Chat
Sell
Explore

Prompt Details

Model
(claude-5-opus)
Token size
1,487
Example input
[Website URL]: www.taskflowpro.com [SaaS / E-Commerce / Agency / Healthcare / Finance / Education / Portfolio]: SaaS (Project Management) [B2B / B2C / Enterprise / Students / Professionals]: Audience: B2B (Small to Mid-Size Businesses, 10-500 employees) [Lead Generation / Sales / Branding / Signups / Bookings]: Goals: Lead Generation, Free Trial Signups, Enterprise Sales [High Bounce Rate / Slow Speed / Low Conversions / Outdated Design]: 42% bounce rate on homepage 3.2s page load time (target: <1.5s) Conversion rate 1.2% (industry benchmark: 3-5%) Mobile traffic 65% but mobile conversions only 0.6%
Example output
## πŸ§ͺ WEBSITE REDESIGN TEST ANALYSIS ### πŸ“Š SECTION 1 β€” Executive Website Assessment **Current Website Health Score: 4.2/10** ⚠️ **Key Findings:** | Area | Status | Issue | |------|--------|-------| | **Bounce Rate** | πŸ”΄ Critical | 42% is 50% above industry standard (28%) | | **Conversion Rate** | πŸ”΄ Critical | 1.2% vs. 3-5% benchmarkβ€”losing ~$50K/month in potential revenue | | **Performance** | 🟑 Warning | 3.2s load time frustrating users on mobile | | **Mobile Experience** | 🟑 Warning | 65% traffic but only 0.6% conversionβ€”massive leakage | | **Competitive Positioning** | 🟠 Moderate | Homepage lacks clear differentiation from Asana/Monday | **Growth Opportunities:** βœ… Fix mobile CTA placement β†’ potential +0.8% conversion βœ… Reduce page load to <1.2s β†’ potential +12% engagement βœ… Redesign value prop β†’ potential +25% qualified leads βœ… Add social proof (testimonials/logos) β†’ potential +15% trust signal --- ### 🎨 SECTION 2 β€” Visual Design Review **Visual Assessment: 5/10** **Problems Identified:** 1. **Visual Hierarchy Issues** - Hero headline doesn't stand out - CTAs use same blue (#2563EB) as linksβ€”no distinction - Too many competing elements above the fold 2. **Brand Consistency** πŸ”΄ - Color palette feels muted; #2563EB doesn't pop against white backgrounds - Typography inconsistent (some body text too small: 14px) - Lack of visual breathing room (spacing feels cramped) 3. **Imagery Problems** - Stock photos instead of authentic product screenshots - No video demonstrations of key features - Missing customer success imagery **Recommendations:** ``` βœ… Increase primary CTA contrast with gradient: #2563EB β†’ #1E40AF βœ… Upgrade body font size: 14px β†’ 16px minimum βœ… Add 8px padding to card components (currently too tight) βœ… Replace hero stock photo with 60-second product walkthrough video βœ… Use customer screenshots (with permission) instead of generic illustrations ``` --- ### 🧭 SECTION 3 β€” User Experience (UX) **UX Score: 4.5/10** **Navigation Issues:** - Main nav has 7 menu items (should be 4-5) - Pricing page requires clicking "Plans" then waiting for dropdown - No breadcrumbs on feature pages - Search function missing **Information Architecture Problem:** ``` Current Flow (BAD): Homepage β†’ Vague "Learn More" β†’ Features Page β†’ Pricing β†’ Sign Up (5 steps) Ideal Flow (GOOD): Homepage β†’ "Start Free Trial" (hero CTA) β†’ Sign Up (2 steps) ``` **User Friction Points:** πŸ”΄ 1. **Homepage**: No clear answer to "What is TaskFlow Pro?" in first 3 seconds 2. **Feature Pages**: Each lists 15+ features without hierarchyβ€”overwhelming 3. **Pricing**: No comparison table; force users to click each tier to compare 4. **Sign Up Form**: 8 fields required (should be max 3 for trial) **CTA Placement Issues:** - Only 1 CTA above the fold (weak placement, unclear copy) - "Learn More" is vague; should be "Start Free Trial" - No secondary CTA for users not ready to commit **Recommended UX Improvements:** ``` βœ… Hero section CTA: "Start Free Trial" (not "Get Started") βœ… Add secondary CTA: "Watch 2-Min Demo" βœ… Reduce feature list to top 5 with icons βœ… Create pricing comparison table βœ… Reduce sign-up form to: Email + Password + Company Size βœ… Add trust badges below CTA (e.g., "Used by 5,000+ companies") ``` --- ### πŸ“± SECTION 4 β€” Mobile & Responsive Design **Mobile Score: 3/10** πŸ”΄ **Critical Issues:** 1. **Layout Breakdown** - Hero image doesn't resizeβ€”breaks on small screens - Navigation collapses to burger menu, but menu doesn't close after selection - Forms stack poorly; input fields too small 2. **Touch Target Sizes** ⚠️ - Buttons only 32px tall (iOS standard: 44px minimum) - Links too close together (<16px padding between buttons) 3. **Performance on Mobile** - Images load full-size (not optimized for mobile) - JavaScript bundle is 250KB uncompressed (should be <100KB) **Mobile Optimization Strategy:** ``` Phase 1 β€” Immediate (Week 1-2): βœ… Increase button height to 48px βœ… Use CSS media queries to adjust nav at 768px breakpoint βœ… Enable lazy loading for images below the fold Phase 2 β€” Short-term (Week 3-4): βœ… Optimize images with WebP format + srcset βœ… Split JavaScript into critical + deferred chunks βœ… Test on real devices: iPhone 12, Samsung Galaxy A12 Phase 3 β€” Ongoing: βœ… Implement responsive typography (16px base on mobile, 18px on desktop) βœ… Add swipe gestures for feature carousel βœ… Test monthly with Lighthouse CI ``` --- ### ⚑ SECTION 5 β€” Performance Optimization **Performance Score: 3.5/10** πŸ”΄ **Core Web Vitals (Current vs. Target):** | Metric | Current | Target | Gap | |--------|---------|--------|-----| | **LCP** (Largest Contentful Paint) | 3.8s | <2.5s | ⚠️ +1.3s slow | | **FID** (First Input Delay) | 180ms | <100ms | ⚠️ +80ms slow | | **CLS** (Cumulative Layout Shift) | 0.15 | <0.1 | ⚠️ High jank | **Root Causes:** 1. **JavaScript Bloat** - Bundle size: 250KB (uncompressed) - No code splitting - Loading entire React UI upfront 2. **Image Optimization** - Hero image: 2.5MB (should be <300KB) - No WebP format; all JPGs - No lazy loading on below-fold images 3. **Fonts** - Loading 2 font weights from Google Fonts synchronously - Blocking render until fonts load 4. **Third-Party Scripts** - Analytics script (not async) - Intercom widget (blocks main thread) - 3 tracking pixels (unnecessary) **Performance Improvement Roadmap:** ``` βœ… Enable NextJS Image Optimization Expected Impact: -1.2s LCP βœ… Split JavaScript bundles Expected Impact: -0.8s FID βœ… Load fonts asynchronously with font-display: swap Expected Impact: -0.4s LCP βœ… Remove unused CSS (current: 45KB unused) Expected Impact: -0.2s overall βœ… Enable Brotli compression on Vercel Expected Impact: -15% bandwidth βœ… Implement service worker for offline support Expected Impact: Improves perceived performance ``` **Expected Result:** 3.2s β†’ 1.1s load time βœ… --- ### πŸ” SECTION 6 β€” SEO & Accessibility **SEO Score: 5.5/10** | **Accessibility Score: 4/10** **SEO Issues:** | Issue | Severity | Fix | |-------|----------|-----| | No schema markup (FAQ, Organization) | πŸ”΄ High | Add JSON-LD for FAQs | | Title tag: "TaskFlow Pro" (too generic) | πŸ”΄ High | "TaskFlow Pro: Project Management for Teams" | | Meta descriptions missing on 40% of pages | πŸ”΄ High | Add unique descriptions | | No internal linking strategy | 🟑 Medium | Link blog posts to feature pages | | Sitemap present but incomplete | 🟑 Medium | Include all feature/pricing pages | **Accessibility Issues (WCAG 2.1 Level AA):** ``` πŸ”΄ Critical: - Contrast ratio on secondary buttons: 3.2:1 (should be 4.5:1) - Missing alt text on 60% of images - Form labels not properly associated with inputs 🟑 Medium: - No skip navigation link - Color alone used to indicate required fields - Keyboard focus indicators not visible βœ… Good: - Semantic HTML structure is sound - Navigation is keyboard accessible ``` **SEO & Accessibility Fixes:** ``` Priority 1 (Week 1): βœ… Add schema markup (Organization, FAQ, BreadcrumbList) βœ… Rewrite title tags and meta descriptions βœ… Increase button contrast to 7:1 (AAA level) Priority 2 (Week 2-3): βœ… Add alt text to all images (descriptive, not "image1") βœ… Add skip link to navigation βœ… Improve focus indicators with custom outline Priority 3 (Ongoing): βœ… Add internal linking in blog posts βœ… Monitor Core Web Vitals monthly βœ… Run monthly accessibility audit with Axe DevTools ``` --- ### πŸ’° SECTION 7 β€” Conversion Rate Optimization (CRO) **CRO Score: 3/10** πŸ”΄ **Current Funnel Leakage:** ``` 100 Visitors ↓ 58 Don't bounce (42% bounce rate) ↓ 35 Click "Start Free Trial" (from 58) ↓ 12 Reach sign-up form ↓ 7 Complete sign-up (1.2% conversion) ``` **Critical CRO Problems:** 1. **Value Prop Unclear** - Homepage doesn't answer "Why TaskFlow over Monday/Asana?" in <3 seconds - No customer testimonials visible above the fold 2. **Weak CTAs** - "Learn More" is vague and non-committal - CTA button color doesn't contrast well - No sense of urgency ("Starts Free" vs. "Start Free Trial") 3. **Trust Signals Missing** - No customer logos or case studies - No security badges (SOC 2, GDPR, etc.) - No money-back guarantee or risk-reversal statement 4. **Forms Too Long** - 8 fields for free trial (typical: 3-4) - No progressive profiling - No clear benefit statement **CRO Strategy:** ``` Quick Wins (2-3 weeks): βœ… Change CTA copy: "Start Free Trial" with green #10B981 βœ… Add 3-5 customer logos below hero CTA βœ… Add trust badges: "SOC 2 Type II", "GDPR Compliant" βœ… Reduce sign-up form to 3 fields: Email, Password, Company Size βœ… Add 5-second testimonial video as secondary CTA Medium-term (4-8 weeks): βœ… A/B test CTA copy variations ("Try Free" vs. "Start Free Trial") βœ… Create 2-3 case studies with metrics βœ… Implement countdown timer on pricing page (limited-time offer) βœ… Add live chat widget (if budget allows) Long-term (2-3 months): βœ… Implement email nurture sequences for abandoned sign-ups βœ… Create comparison pages vs. competitors βœ… Build exit-intent popups with discount offers ``` **Expected Impact:** - Current: 1.2% conversion - With changes: 3.5% conversion - Revenue uplift: +$45K/month (assuming $2K ACV) --- ### πŸ—οΈ SECTION 8 β€” Enterprise Design System **Recommended Component Library:** ``` COLORS: - Primary Blue: #2563EB (actions, links) - Success Green: #10B981 (CTAs, confirmations) - Error Red: #DC2626 (warnings, errors) - Neutral Gray: #6B7280 (body text, borders) - Background: #FFFFFF / #F9FAFB (light mode) TYPOGRAPHY: - Headlines: Inter Bold, 32px (h1), 28px (h2), 24px (h3) - Body: Inter Regular, 16px (desktop), 14px (mobile) - Small: Inter Regular, 14px (captions, metadata) SPACING (8px base grid): - xs: 4px | sm: 8px | md: 16px | lg: 24px | xl: 32px BUTTONS: - Primary: Blue background, white text, 48px height, 12px padding - Secondary: Gray border, blue text, 48px height - Ghost: Transparent, blue text, 48px height CARDS: - 16px padding, 4px border-radius, subtle shadow FORMS: - 16px font size (accessibility) - 48px input height - Label required (not just red asterisk) ``` --- ### ⚠️ SECTION 9 β€” Risk & Gap Analysis **Risk Register:** | Risk | Likelihood | Business Impact | Priority | Mitigation | |------|------------|-----------------|----------|-----------| | Redesign delays launch 2+ months | Medium | Lose 300+ signups | πŸ”΄ High | Agile sprints, weekly reviews | | Redesign doesn't improve conversion | Medium | Wasted $50K+ | πŸ”΄ High | A/B test all major changes | | Mobile experience still poor | Low | Lose 65% of users | πŸ”΄ High | Test on real devices, weekly | | Accessibility fails WCAG audit | Medium | Legal liability | 🟑 Medium | External audit pre-launch | | Performance regression post-launch | Low | Users bounce | 🟑 Medium | Lighthouse CI + monitoring | --- ### πŸš€ SECTION 10 β€” Website Redesign Roadmap **Phase 1: Discovery & Research (Week 1-2)** - User interviews (10 customers + 10 prospects) - Heatmap analysis (where do users click?) - Competitor teardown analysis - Analytics deep-dive **Phase 2: UX Wireframes (Week 3-4)** - Wireframe 5 key pages (homepage, pricing, features, blog, sign-up) - User flow mapping - Information architecture refinement - Deliverable: Figma wireframes **Phase 3: High-Fidelity Design (Week 5-7)** - Visual mockups with design system - Interactive prototypes - Stakeholder reviews & iterations - Deliverable: Figma design file + component library **Phase 4: Development & QA (Week 8-12)** - Frontend development (Next.js) - Performance optimization - Accessibility testing - Cross-browser testing - QA & bug fixes - Deliverable: Staging environment **Phase 5: Launch & Optimization (Week 13+)** - Soft launch to 10% traffic - Monitor metrics for 1 week - Full rollout - A/B test 3 variations for 4 weeks - Monthly optimization cycles --- ## πŸ“Š SAMPLE TEST RESULTS SUMMARY | Metric | Current | Target | Effort | Timeline | |--------|---------|--------|--------|----------| | **Bounce Rate** | 42% | 28% | Medium | 4 weeks | | **Conversion Rate** | 1.2% | 3.5% | High | 8 weeks | | **Page Load** | 3.2s | 1.1s | Medium | 3 weeks | | **Mobile Conversion** | 0.6% | 2.8% | High | 6 weeks | | **SEO Rankings** | ~200 keywords | 500+ keywords | Low | 8 weeks | --- Would you like me to dive deeper into any specific section or create another sample test scenario?
πŸŒ€ Claude

Website Redesign Advisor

Add to Cart
Instant accessInstant access
Usage rightsCommercial use
Money-back guaranteeMoney‑back
By purchasing this prompt, you agree to our terms of service
CLAUDE-5-OPUS
Tested icon
Guide icon
4 examples icon
Free credits icon
Many websites lose visitors because of poor navigation, outdated UI, slow loading speeds, weak CTAs, inconsistent branding, confusing information architecture, and low conversion optimization. ✨ What You Receive 🎨 Complete Website Audit 🧭 UX & Navigation Analysis πŸ“± Responsive & Mobile Optimization Strategy ⚑ Performance & Core Web Vitals Assessment πŸ” SEO & Accessibility Review πŸ’° Conversion Rate Optimization (CRO) Plan πŸ—οΈ UI Design System Recommendations πŸš€ Enterprise Website Redesign Roadm
...more
Added 1 day ago
Report
Browse Marketplace