A static landing page for stepback.dev - a git-style conversational AI platform.
This site uses absolute paths and requires a web server to run locally.
Python 3:
python3 -m http.server 8000Python 2 (deprecated):
python -m http.server 8000Then open your browser to:
http://localhost:8000
npx http-server -p 8000php -S localhost:8000You can use any available port. Common choices:
8000(default)808030005000
Example with custom port:
python3 -m http.server 8080stepback.dev-landing/
├── index.html # Main landing page
├── access.html # Access request page
├── roadmap.html # Product roadmap
├── css/
│ └── styles.css # All styles
├── js/
│ └── main.js # JavaScript functionality
└── blog/
├── index.html # Blog listing
└── why-stepback-was-founded.html
CONNECTION_GUIDE.md- Backend connection guideREPOSITORY_CHECKLIST.md- Pre-deployment checkliststepback-landing-page-plan.md- Implementation plan
- The site uses absolute paths (e.g.,
/css/styles.css), so it must be served from a web server root - Do not open HTML files directly in the browser (file:// protocol) as paths won't resolve correctly