# Static Website Deployment Guide ## Quick Deployment Options ### Option 1: Netlify (Recommended) ⭐ **Why Netlify:** - Drag & drop deployment - Automatic SSL certificates - Global CDN - Form handling built-in - Custom domains **Steps:** 1. Go to [netlify.com](https://netlify.com) 2. Sign up/login 3. Drag the `static-website` folder to Netlify dashboard 4. Site will be live instantly at random subdomain 5. Configure custom domain in Site Settings → Domain management 6. Enable form handling for contact form (automatic) **Custom Domain Setup:** 1. Add domain in Netlify: Site Settings → Domain management → Add custom domain 2. Update DNS: Point your domain to Netlify's servers 3. SSL certificate will be generated automatically ### Option 2: Vercel **Steps:** 1. Go to [vercel.com](https://vercel.com) 2. Connect GitHub account 3. Import repository 4. Set root directory to `static-website` 5. Deploy **Custom Domain:** 1. Go to project settings 2. Add domain in Domains section 3. Update DNS as instructed ### Option 3: GitHub Pages (Free) **Steps:** 1. Push `static-website` contents to GitHub repository 2. Go to repository Settings → Pages 3. Select source branch 4. Site will be available at `username.github.io/repository-name` ## Domain Configuration ### Main Site Structure ``` yoursite.com → Static website (Netlify/Vercel) ├── / → index.html (Home with contact section) └── /digital-branding → digital-branding.html aiagent.quantumtaskai.com → Django application (CapRover) ├── /agents → AI agent marketplace ├── /login → User authentication ├── /register → User registration └── /admin → Django admin ``` ### DNS Settings (Example for Netlify) **For main domain (`yoursite.com`):** ``` Type: A Name: @ Value: 75.2.60.5 (Netlify's load balancer) Type: CNAME Name: www Value: yoursite.netlify.app ``` **For app subdomain (`aiagent.quantumtaskai.com`):** ``` Type: A Name: aiagent Value: YOUR_CAPROVER_SERVER_IP ``` ## Contact Form Configuration ### Option A: Netlify Forms (Recommended) Add `netlify` attribute to the contact form in the homepage contact section: ```html