Single-file static site for NeuralAds. No build step. Deploy anywhere.
# Option 1 — Python's built-in server
cd website
python -m http.server 8000
# → open http://localhost:8000
# Option 2 — just open the file
open index.htmlEverything is in index.html. Search and replace these placeholders before going live:
| Placeholder | Replace with |
|---|---|
hello@neuralads.ai |
Your real contact email (appears in 3 places) |
NeuralAds |
Your final company/product name if different |
| Foundational Research section | Add or remove citations as needed |
| Stats in hero (86, 12, 5min, 8) | Update with your real numbers |
git init
git add .
git commit -m "Initial site"
git remote add origin git@github.com:YOUR_USERNAME/neuralads-site.git
git push -u origin main
# Then in GitHub repo Settings → Pages:
# Source: Deploy from branch
# Branch: main / root
# Your site goes live at https://YOUR_USERNAME.github.io/neuralads-site/npm i -g vercel
vercel
# Follow prompts. Done in 30 seconds.- Go to https://app.netlify.com/drop
- Drag the
websitefolder onto it - Done
- Connect your GitHub repo at https://pages.cloudflare.com
- Build command: leave empty
- Build output directory:
website - Deploy
website/
├── index.html ← all the content + styling + JS
└── README.md ← this file
The site uses:
- Tailwind CSS via CDN (no build step, no node_modules)
- Inter + JetBrains Mono from Google Fonts
- Inline SVG icons (no icon library)
- IntersectionObserver for scroll-reveal animations
Loads in <500ms on most connections. ~30KB total.
- Hero — tagline, sub, CTAs, stat strip
- Problem — 3 cards (surveys lie / focus groups slow / A/B burns budget)
- How it works — 3 stages with code/screenshot demos
- The science — TRIBE explanation + research citations
- What you get — Executive vs Full Brief comparison
- Who it's for — 4 audience segments
- Platforms — pill chips of supported platforms
- Contact — email CTA + 3-step process
- Footer
After deploying to any of the above:
- Buy domain (e.g.
neuralads.ai) on Namecheap / Cloudflare / Porkbun - Add DNS records pointing to your host
- Most hosts support free auto-HTTPS via Let's Encrypt
Just edit index.html, push to GitHub, Pages/Vercel/Netlify auto-deploy on push.