image generation added

This commit is contained in:
2025-11-20 23:54:54 -05:00
parent 5305c34e3d
commit c9cbb9b51a
12 changed files with 1105 additions and 17 deletions

View File

@@ -74,12 +74,19 @@ source venv/bin/activate
pip install -r requirements.txt
```
4. **Run the application:**
4. **Generate SEO images:**
```bash
python generate_images.py
```
This creates favicons, social media previews, and PWA icons.
See `GENERATE_IMAGES_INSTRUCTIONS.md` for details.
5. **Run the application:**
```bash
python api/app.py
```
5. **Open your browser:**
6. **Open your browser:**
Navigate to `http://localhost:5000`
### Docker Setup
@@ -267,6 +274,23 @@ mazer/
- **Containerization:** Docker, Docker Compose
- **Frontend:** HTML5, CSS3, JavaScript
- **Design:** Neo-Brutalism aesthetic
- **SEO:** Comprehensive meta tags, structured data, sitemap, robots.txt
## SEO Features
The site is fully optimized for search engines:
- ✅ Comprehensive meta tags (title, description, keywords)
- ✅ Open Graph tags for social media sharing
- ✅ Twitter Card support
- ✅ Schema.org structured data (WebApplication)
- ✅ XML sitemap with image sitemap
- ✅ robots.txt for crawler guidance
- ✅ PWA manifest for mobile app experience
- ✅ Semantic HTML with ARIA roles
- ✅ Mobile-optimized and responsive
- ✅ Fast loading with resource hints
See `SEO_OPTIMIZATION.md` for complete details.
## Contributing