Full SEO-Ready Website Creation with AI
A complete course from local setup to live deployment — using AI as your co-developer. The same work freelancers charge $1,000+ for. Learn it once, use it forever, and pitch it to clients.
LAUNCHVKHosted on SuperProfile. Secure checkout.


Sound familiar?
If any of these hit close to home, this course is for you.
- →You've been paying for WordPress plugins and premium themes but your site still loads like it's 2012.
- →You wanted a custom site but got quoted ₹50,000 by a developer for something you knew should be simpler.
- →You tried to learn web development but got lost between 47 YouTube tutorials that each assumed different things.
- →You've heard about AI coding tools but have no idea how to actually use them to build something real.
- →You keep pushing the 'launch my site' task to next week because you don't know where to start.
What makes this different
Build 10× faster with AI
Claude Code generates components, fixes errors, and writes boilerplate while you focus on the decisions that matter. What used to take a developer a week takes you a weekend.
Save money. Then earn money.
You stop paying developers ₹30,000 for changes you can now do yourself — and you can flip the skill and pitch website projects to clients. Freelancers charge $1,000–$3,000 for what you learn here.
SEO built into the foundation
This isn't a 'SEO tips' module bolted on at the end. There's a dedicated chapter for baking metadata, Open Graph, sitemap, and robots.txt into the codebase — plus SEO rules written into CLAUDE.md so every future page follows them automatically.
Static = fast everywhere
A Next.js static export loads in under a second on any server. No PHP, no database, no plugin conflicts. Google rewards fast sites. This one is fast by design.
No prior coding required
You don't need to understand React deeply to follow this course. The AI writes the code — Claude Code or GitHub Copilot, whichever you prefer. You learn the concepts. By the end, you'll be comfortable reading and modifying the output.
A real project, not a fake demo
You're not building a throwaway tutorial site. By Chapter 4 you have a locally running Next.js site with real pages and blog posts. By Chapter 9 it's live, indexed, and submitted to Google and Bing.
Built for builders, not watchers
Bloggers & Content Creators
You've been on WordPress forever and want a faster, cheaper, more professional platform you actually own.
Affiliate Marketers
You need a high-performance site that loads fast, ranks well, and doesn't cost $200/month to run.
Freelancers & Consultants
You want to build websites for clients without hiring a developer or spending weeks learning to code.
First-Time Builders
You have a site idea and zero coding experience. You're willing to follow steps and ship something real.
By the end, you will have
Not just knowledge — tangible deliverables you built yourself, and skills that stay with you.
What you will have built
Skills you will develop
Two deployment paths covered
File Manager upload (shared hosting — no terminal needed) and Rsync over SSH (VPS — one command to deploy). You pick the one that fits your setup.

Freelancers charge $1,000+ for this.
You can learn it for ₹797.
This course takes you from local setup all the way to a live, deployed website — the exact deliverable clients pay $1,000–$3,000 for. Build your own site first, then pitch the service to clients.
Build it yourself. Then charge clients for it.
Freelancers routinely earn $1,000–$3,000 per project to build and deploy a custom website with SEO setup. After this course you have the exact same skill — and you can offer it to clients from day one.
What freelancers charge for this
$1,000–$3,000
Build + deploy a custom Next.js site with SEO setup. The exact skill you learn here.
Comparable courses elsewhere
$199–$499
Similar Udemy/Teachable courses — if they even include AI workflow and live deployment.
Agency fee for same outcome
₹1,50,000+
If you hired an agency to build, deploy, and SEO-configure a site like this for you.
Get the full course — development to deployment — for
LAUNCHVKLifetime access · Hosted on SuperProfile · Secure checkout
9 chapters, one working website
Each chapter has a hands-on checklist. Enroll to access the full video lessons.
1Chapter 1
Local Environment Setup
Chapter 1
Local Environment Setup
Install and configure every tool you need — VS Code, Node.js, GitHub Desktop, and Claude Code — before writing a single prompt.
- Install VS Code — code.visualstudio.com/download
- VS Code Overview — explore the editor layout, terminal, and extensions panel
- Install Node.js via nvm — nodejs.org/en/download (use nvm install 24)
- Compare Claude Code vs GitHub Copilot — understand when to use each
- Subscribe to GitHub Copilot (optional alternative to Claude Code)
- Install GitHub Desktop — visual Git client for commits, branches, and PRs
- Create a GitHub Repository for your project
- Open the repo folder in VS Code
- Install Claude Code and set up Claude API access
- Your first Claude Code chat — ask it to create a README.md file
2Chapter 2
Git & GitHub — Code Management
Chapter 2
Git & GitHub — Code Management
Learn the full Git workflow — commit, push, branch, pull request, and merge — so you never lose a working version of your site.
- Stage and commit your first changes (git add + git commit)
- Push to GitHub (git push)
- Create a new branch (git checkout -b branch-name)
- Open a Pull Request on GitHub
- Merge the PR into main
3Chapter 3
How Agentic Coding Works — PRD, CLAUDE.md & Markdown
Chapter 3
How Agentic Coding Works — PRD, CLAUDE.md & Markdown
Understand how to direct an AI using a PRD and CLAUDE.md, learn Markdown basics, and run the starter prompt to generate your build checklist.
- Understand what agentic coding means vs traditional coding
- Learn Markdown basics — headings, lists, code blocks, bold/italic
- Download course resources: PRD, CLAUDE.md, and starter prompts
- Read the PRD (what to build) and CLAUDE.md (how to behave)
- Place CLAUDE.md in your project root
- Run the starter prompt — Claude reads the PRD and outputs a build checklist
4Chapter 4
Building the Website Phase by Phase
Chapter 4
Building the Website Phase by Phase
Go phase by phase — scaffold, layout, core pages, blog system — using AI-generated prompts, reviewing each output before moving on.
- Prompting fundamentals — dos and don'ts of a perfect prompt in vibe coding
- GitHub Copilot: place PRD + .github/copilot-instructions.md in project root
- Create prompts.md for detailed prompts for each phase - using AI
- Phase 1: Ask AI for a focused prompt, run it, review output, test locally
- Phase 2: Core layout and styling — navbar, footer, dark mode, global CSS
- Phase 3: Core pages — homepage, about, contact
- Phase 4: Blog system — Archive and single posts, each post as a .tsx file
- Final test — full site running locally with at least 4 blog posts
5Chapter 5
On-Page SEO — Baking SEO into the Code
Chapter 5
On-Page SEO — Baking SEO into the Code
Add metadata, Open Graph tags, sitemap, and robots.txt — then write SEO rules into CLAUDE.md so every future page is automatically optimised.
- Add metadata — title tag and meta description for each page
- Add Open Graph tags — how pages look when shared on social media
- Generate sitemap.xml — auto-updated map of all pages
- Create robots.txt — tells crawlers what to index and what to skip
- Write SEO rules into CLAUDE.md — title format, meta description, alt text
- Same SEO rules into .github/copilot-instructions.md for GitHub Copilot users
- Test: ask the AI to create a new page and verify it follows the SEO rules
6Chapter 6
Pre-Flight Review & Production Build
Chapter 6
Pre-Flight Review & Production Build
Before you run the production build, you do a full review of the site locally.
- Do a full review of all pages in browser using npx serve out
- Check all internal links work correctly
- Check dark and light mode on every page
- Check responsive layout at mobile screen size
- Verify all 4 blog posts render correctly
- Verify SEO meta tags using browser DevTools or a meta tag checker
- Confirm robots.txt and sitemap.xml are present in the out/ folder
- Run final clean build — rm -rf .next/ then npm run build
- Verify the /out folder was generated without errors
7Chapter 7
Get Hosting & Claim Your Free Domain
Chapter 7
Get Hosting & Claim Your Free Domain
Your /out folder is ready — now buy hosting, claim your free domain with Hostinger, and log in to hPanel.
- Use link vkapoor.co/hostinger to get the best deal
- Use code VASHISHTHA10 for an extra 10% off
- Discount applies only on 12, 24, or 48 month plans — not monthly
- Choose a Hostinger plan — Shared Hosting recommended for beginners
- Complete purchase and access hPanel
- Claim your free domain from hPanel after checkout
Use code VASHISHTHA10 for extra 10% off. Free domain included. Affiliate link — I earn a commission at no extra cost to you.
8Chapter 8
Deployment (File Manager & Rsync Method)
Chapter 8
Deployment (File Manager & Rsync Method)
Two ways to deploy — simple File Manager upload for beginners, or one-command rsync over SSH for automation.
- Simple method: upload the out/ folder to public_html/ via Hostinger File Manager
- Generate .htaccess file in public/ folder — use a Hindi prompt to Claude for generation
- Ensure .htaccess is included in the build output
- Alternate (rsync): generate SSH key on local machine (ssh-keygen)
- Alternate (rsync): add public key to Hostinger SSH access
- Alternate (rsync): test SSH connection with SSH command
- Alternate (rsync): build the rsync command with server IP, port, and public_html path
- Alternate (rsync): run the rsync command and verify files in /public_html
9Chapter 9
Off-Site SEO — Registering Your Live Site with Google & Bing
Chapter 9
Off-Site SEO — Registering Your Live Site with Google & Bing
Register your live site with Google Search Console and Bing Webmaster Tools, submit the sitemap, and check that pages are being indexed.
- Add site to Google Search Console — verify ownership via HTML tag or DNS record
- Add site to Bing Webmaster Tools — import from GSC or verify separately
- Submit the sitemap.xml URL to both platforms
- Check the coverage report — confirm pages are being discovered without errors
- Understand indexing timeline — pages typically appear in search within days to weeks

Your Instructor
Vashishtha Kapoor
Blogger · Affiliate Marketer · #5 WordPress Creator of India — BlueHost Awards 2021
I've been running vashishthakapoor.com as a full-time affiliate blog since 2016. This site — the one you're on right now — is built on exactly the same stack I teach in this course: Next.js static export, Tailwind CSS, MDX, and deployed via rsync to a VPS. Everything I show you I use myself.
I built this course because I kept getting asked "how do I start a blog without WordPress?" and the honest answer was: use AI, use Next.js, and follow a proper checklist. So I made one.
Common questions
Do I need to know how to code?
No. This course assumes zero coding experience. Claude Code or GitHub Copilot generates the code — your job is to understand what it's doing and guide it in the right direction. By the end you'll be comfortable reading and tweaking the output.
What hosting do I need?
Any shared hosting or VPS works. The course covers both deployment paths. Hostinger is used for demos because it's cheap and has a clean dashboard, but the principles apply to any host.
How long does it take to complete?
If you follow along and build while watching, most people finish in a weekend. Each chapter is designed to be completed in one sitting.
Will this work on Windows too?
Yes. Node.js, VS Code, Git, and Claude Code all run on Windows. The rsync chapter uses a slightly different setup on Windows, but shared hosting deployment works identically.
Do I need Claude Code specifically, or can I use GitHub Copilot?
Both work. The course covers Claude Code as the primary tool, but I've also built the same site using GitHub Copilot and the entire workflow translates directly. Chapter 1 walks you through both options so you can pick whichever fits your setup. GitHub Copilot is significantly cheaper if cost is a factor.
Ready to build your site?
Start with Chapter 1. Follow the checklist. By the time you finish Chapter 9 your site will be live, indexed, and ready for content.
Lifetime access · Hosted on SuperProfile · Secure checkout