Ship It to the World

Vercel makes deployment incredibly simple. Your app will be live on the internet with a real URL in under 5 minutes.

Step 1: Create GitHub Repository

  1. Go to github.com/new
  2. Name your repository (e.g., "my-awesome-app")
  3. Keep it public (or private if you prefer)
  4. Click "Create repository"

Step 2: Push Your Code

In your terminal, run these commands:

git init
git add .
git commit -m "Initial commit"
git remote add origin [your-repo-url]
git push -u origin main

Step 3: Deploy on Vercel

  1. Go to vercel.com and sign up with GitHub
  2. Click "Add New Project"
  3. Import your GitHub repository
  4. Click "Deploy" — Vercel auto-detects Next.js settings
  5. Wait ~60 seconds for deployment to complete

🎉 You're Live!

Vercel gives you a URL like your-app.vercel.app. Share it with anyone! Future pushes to GitHub auto-deploy.