The definitive AI comparison guide. Task routing cheatsheet, AI mistake fixes, and the Claude Mastery Guide with 2,000+ prompts.
- Go to github.com and sign in
- Click the + icon → New repository
- Name it:
ai-mastery(or anything you like) - Set to Public
- Click Create repository
Option A — Drag & Drop (easiest):
- Open your new repository
- Click uploading an existing file
- Drag ALL files from this folder into the browser
- Write commit message:
Initial launch - Click Commit changes
Option B — Git (faster for updates):
git init
git add .
git commit -m "Initial launch"
git branch -M main
git remote add origin https://github.com/YOUR-USERNAME/YOUR-REPO-NAME.git
git push -u origin main- Go to your repo → Settings tab
- Scroll to Pages in the left sidebar
- Under Source, select GitHub Actions
- The workflow auto-runs — wait ~60 seconds
- Your site is live at:
https://YOUR-USERNAME.github.io/YOUR-REPO-NAME/
- Buy a domain (Namecheap, Google Domains, etc.)
- In repo Settings → Pages → Custom domain, enter your domain
- At your domain registrar, add a CNAME record:
- Name:
www - Value:
YOUR-USERNAME.github.io
- Name:
- Check Enforce HTTPS
/
├── index.html ← Main website (all 4 sections)
├── 404.html ← Custom 404 page
├── robots.txt ← SEO crawler instructions
├── README.md ← This file
└── .github/
└── workflows/
└── deploy.yml ← Auto-deploy on every push
In index.html, search for submitForm and update the success logic or connect to a real email service (Mailchimp, ConvertKit, etc.).
Replace the submitForm() function with:
async function submitForm() {
const email = document.getElementById('modal-email').value;
// POST to your Mailchimp/ConvertKit endpoint
await fetch('YOUR_FORM_ENDPOINT', {
method: 'POST',
body: JSON.stringify({ email }),
headers: { 'Content-Type': 'application/json' }
});
// Show success
}Search for footer-links in index.html and add your Instagram, LinkedIn, etc.
| Section | Content |
|---|---|
| Hero | Animated particle hero with all 3 AI brands |
| Section 1 | Claude vs ChatGPT — full feature comparison |
| Section 2 | Task Routing Cheatsheet (10 tasks, 3 AIs, score bars) |
| Section 3 | Claude vs Gemini — table comparison + pick guide |
| Section 4 | 6 AI Mistakes — interactive accordion with fixes |
| Section 5 | Claude Mastery Guide — book mockup, chapters, testimonials |
- Pure HTML/CSS/JS — zero dependencies, zero build step
- GitHub Actions for auto-deploy
- Particle canvas animation
- Scroll-reveal + 3D tilt effects
- Responsive (mobile + desktop)
Built with ❤️ — Different AI. Different approach. Way better results.