```json { "version": 2, "builds": [ { "src": "index.html", "use": "@vercel/static" } ], "routes": [ { "src": "/", "dest": "index.html" }, { "src": "/account", "dest": "account.html" }, { "src": "/services", "dest": "services.html" }, { "src": "/support", "dest": "support.html" }, { "src": "/components/(.*)", "dest": "components/$1" }, { "src": "/(.*)", "dest": "/$1" } ] } ``` To deploy the website: 1. Create a free account on Vercel (https://vercel.com) 2. Install Vercel CLI by running: ``` npm install -g vercel ``` 3. In your project directory, run: ``` vercel ``` 4. Follow the prompts to deploy your project The website will be live at a Vercel-provided URL (you can also connect a custom domain if you have one). Alternatively, you can deploy to GitHub Pages by: 1. Create a new GitHub repository 2. Push all your files to the repository 3. Go to Settings > Pages 4. Select the main branch and click Save 5. Your site will be live at `https://[your-username].github.io/[repository-name]/` The vercel.json configuration will ensure proper routing for all pages and components. The site is now ready for production deployment.