DevOps-Grade Nuclear Energy Intelligence Platform for Data Centers
This is a static HTML website that can be deployed to Vercel, Netlify, or any static hosting platform.
nmgo-platform/
├── index.html # Main HTML file
├── vercel.json # Vercel configuration
├── package.json # Project metadata
├── .gitignore # Git ignore rules
└── README.md # This file
-
Install Vercel CLI
npm install -g vercel
-
Navigate to your project directory
cd your-project-folder -
Deploy
vercel
-
Follow the prompts:
- Set up and deploy: Yes
- Which scope: Select your account
- Link to existing project: No
- Project name: nmgo-platform (or your choice)
- Directory: ./ (current directory)
- Override settings: No
- Go to vercel.com
- Click "Add New" → "Project"
- Import your Git repository or upload your files
- Configure project:
- Framework Preset: Other
- Root Directory: ./
- Build Command: (leave empty)
- Output Directory: ./
- Click "Deploy"
If you're getting 404 errors on Vercel:
Solution: Make sure vercel.json is in your root directory with the correct configuration.
Solution: Ensure index.html is in the root directory, not in a subdirectory.
Solution: In Vercel dashboard:
- Go to Project Settings
- Navigate to "General" → "Build & Development Settings"
- Framework Preset: Other
- Build Command: Leave empty or
echo "No build needed" - Output Directory: Leave empty or
. - Install Command: Leave empty or
echo "No install needed"
Solution: The vercel.json file includes routing configuration to handle all routes and redirect to index.html.
Make sure you have these files in your root directory:
- ✅
index.html- Your main HTML file - ✅
vercel.json- Vercel configuration - ✅
package.json- Project metadata (optional but recommended) - ✅
.gitignore- Git ignore rules (if using Git)
You can test your site locally before deploying:
-
Using Python:
python -m http.server 8000
Then visit:
http://localhost:8000 -
Using Node.js (serve):
npx serve .Then visit the URL shown in terminal
-
Using PHP:
php -S localhost:8000
Then visit:
http://localhost:8000
- DevOps Architecture: CI/CD pipelines, cloud infrastructure, Kubernetes
- Modern Energy Grid: AI-powered predictions, dynamic optimization
- Responsive Design: Mobile-first, works on all devices
- Dark/Light Mode: Toggle theme with persistent storage
- Smooth Animations: Intersection Observer API for scroll effects
- Contact Form: Functional form with validation
- HTML5 - Semantic markup
- CSS3 - Modern styling with CSS Grid and Flexbox
- JavaScript (ES6+) - Vanilla JS, no frameworks
- Font Awesome - Icons
- Google Fonts - Poppins font family
All dependencies are loaded via CDN:
- Font Awesome 6.4.0
- Google Fonts (Poppins)
No npm packages required for deployment!
This project doesn't require any environment variables. All configuration is static.
For issues or questions:
- Email: hello@nmgo.ai
- Phone: +1-415-555-0199
MIT License - See LICENSE file for details
Built with ❤️ by the NMGO Team