This repository contains the Zantray VR startup landing page built for a Haitian venture.
Open index.html in a modern browser to explore the experience. All assets are static, so no build tools are required.
- Create a Git repository (if needed).
git init git add . git commit -m "Initial Zantray VR site"
- Create a repository on GitHub. Use the GitHub UI to create a new repository under your account.
- Add the remote origin. Replace
<USERNAME>and<REPO>with your details.If you prefer HTTPS:git remote add origin git@github.com:<USERNAME>/<REPO>.git
git remote add origin https://github.com/<USERNAME>/<REPO>.git
- Push the site.
Use
git push -u origin main
masterinstead ofmainif your repository uses that default branch.
- Commit and push your changes to the default branch (
mainormaster). - In the GitHub repository settings, enable GitHub Pages and choose the branch and
/ (root)directory. - Your site will be available at
https://<USERNAME>.github.io/<REPO>/after a short build period.
MIT