Files
ALwrity/frontend/public/BLOG_WRITER_ASSETS_GUIDE.md
2025-10-31 15:59:16 +05:30

163 lines
6.1 KiB
Markdown

# Blog Writer Assets Guide
## 📁 Folder Structure
```
frontend/public/
├── images/
│ └── (add 24 feature images here)
├── videos/
│ └── (add 6 demo videos here)
├── blog-writer-bg.png (already exists ✅)
└── BLOG_WRITER_ASSETS_GUIDE.md (this file)
```
## 🖼️ Required Images (24 total)
### Phase 1: Research & Strategy (4 images)
- `images/research-google-grounding.jpg` - Screenshot/video frame showing Google Search grounding in action
- `images/research-competitor.jpg` - Screenshot of competitor analysis results
- `images/research-keywords.jpg` - Screenshot showing keyword analysis and clustering
- `images/research-angles.jpg` - Screenshot of AI-generated content angle suggestions
### Phase 2: Intelligent Outline (4 images)
- `images/outline-generation.jpg` - Screenshot of AI outline generation interface
- `images/outline-grounding.jpg` - Screenshot showing source mapping and grounding scores
- `images/outline-refine.jpg` - Screenshot of interactive outline refinement (add/remove/merge sections)
- `images/outline-titles.jpg` - Screenshot of multiple AI-generated title options with SEO scores
### Phase 3: Content Generation (4 images)
- `images/content-generation.jpg` - Screenshot of section-by-section content generation
- `images/content-continuity.jpg` - Screenshot showing continuity analysis and flow metrics
- `images/content-sources.jpg` - Screenshot of automatic source integration and citations
- `images/content-medium.jpg` - Screenshot of Medium blog mode quick generation
### Phase 4: SEO Analysis (4 images)
- `images/seo-scoring.jpg` - Screenshot of comprehensive SEO scoring dashboard
- `images/seo-recommendations.jpg` - Screenshot of actionable SEO recommendations list
- `images/seo-apply.jpg` - Screenshot of AI-powered content refinement interface
- `images/seo-keywords.jpg` - Screenshot of keyword density heatmap and analysis
### Phase 5: SEO Metadata (4 images)
- `images/metadata-comprehensive.jpg` - Screenshot of full metadata generation interface
- `images/metadata-social.jpg` - Screenshot of Open Graph and Twitter Cards configuration
- `images/metadata-schema.jpg` - Screenshot of structured data (Schema.org) markup
- `images/metadata-export.jpg` - Screenshot of multi-format output options (HTML, JSON-LD, WordPress, Wix)
### Phase 6: Publish & Distribute (4 images)
- `images/publish-platforms.jpg` - Screenshot of multi-platform publishing options (WordPress, Wix, Medium)
- `images/publish-schedule.jpg` - Screenshot of content scheduling interface with calendar
- `images/publish-versions.jpg` - Screenshot of revision management and version history
- `images/publish-analytics.jpg` - Screenshot of post-publish analytics dashboard
## 🎬 Required Videos (6 total)
### Phase 1: Research & Strategy
- `videos/phase1-research.mp4` - Demo video showing:
- Keyword input and analysis
- Google Search grounding in action
- Competitor analysis results
- Content angle generation
### Phase 2: Intelligent Outline
- `videos/phase2-outline.mp4` - Demo video showing:
- AI outline generation from research
- Source mapping and grounding scores
- Interactive refinement (add/remove sections)
- Title generation with SEO scores
### Phase 3: Content Generation
- `videos/phase3-content.mp4` - Demo video showing:
- Section-by-section content generation
- Continuity analysis and flow metrics
- Source integration and citations
- Medium blog mode
### Phase 4: SEO Analysis
- `videos/phase4-seo.mp4` - Demo video showing:
- SEO scoring dashboard
- Actionable recommendations
- AI-powered content refinement ("Apply Recommendations")
- Keyword analysis
### Phase 5: SEO Metadata
- `videos/phase5-metadata.mp4` - Demo video showing:
- Comprehensive metadata generation
- Open Graph and Twitter Cards
- Structured data (Schema.org)
- Multi-format export options
### Phase 6: Publish & Distribute
- `videos/phase6-publish.mp4` - Demo video showing:
- Multi-platform publishing
- Content scheduling
- Version management
- Analytics integration
## 📝 Image Requirements
- **Format**: JPG/JPEG (recommended for photos) or PNG (recommended for screenshots)
- **Resolution**:
- Minimum: 1200x800px (3:2 aspect ratio for cards)
- Recommended: 1920x1280px for best quality
- **File Size**: Keep under 500KB each for fast loading
- **Content**: Actual screenshots from the working application
## 🎥 Video Requirements
- **Format**: MP4 (H.264 codec recommended)
- **Duration**: 30-90 seconds per phase
- **Resolution**:
- Minimum: 1280x720 (720p)
- Recommended: 1920x1080 (1080p)
- **File Size**: Optimize to keep under 10MB each if possible
- **Content**: Screen recordings showing the actual features in action
## 🚀 How to Add Assets
1. **Create the folders** (already created with .gitkeep files):
```bash
# Folders are already created, just add files
frontend/public/images/
frontend/public/videos/
```
2. **Add your images**:
- Take screenshots or create mockups
- Optimize for web (compress if needed)
- Save with exact filenames listed above
- Place in `frontend/public/images/` folder
3. **Add your videos**:
- Record screen captures of each phase
- Edit to show key features
- Optimize file size
- Save with exact filenames listed above
- Place in `frontend/public/videos/` folder
4. **Test the integration**:
- Run the app: `cd frontend && npm start`
- Open Blog Writer
- Click "🚀 ALwrity Blog Writer SuperPowers"
- Expand each phase to see images and videos
## ✅ Quick Checklist
- [ ] Phase 1: Research images (4) + video (1)
- [ ] Phase 2: Outline images (4) + video (1)
- [ ] Phase 3: Content images (4) + video (1)
- [ ] Phase 4: SEO images (4) + video (1)
- [ ] Phase 5: Metadata images (4) + video (1)
- [ ] Phase 6: Publish images (4) + video (1)
- [ ] Total: 24 images + 6 videos = 30 assets
## 📍 Current Implementation
The images and videos are referenced in:
- `frontend/src/components/BlogWriter/BlogWriterPhasesSection.tsx`
- Each phase card shows video when expanded
- Each feature card shows image placeholder
Paths are already configured to use `/images/` and `/videos/` from the public folder.