A minimal static site containing legal documentation for the Kapibara TikTok video automation app.
- index.html - Homepage with app description and navigation
- privacy.html - Privacy Policy
- tos.html - Terms of Service
To enable GitHub Pages for this repository:
- Go to your repository on GitHub
- Navigate to Settings → Pages
- Under "Source", select the branch you want to deploy (e.g.,
mainorcopilot/create-minimal-static-site) - Select the root folder (
/) as the source - Click Save
Your site will be published at: https://greqone.github.io/kapibara-legal/
To test the site locally, you can use any simple HTTP server:
# Using Python 3
python -m http.server 8000
# Using Python 2
python -m SimpleHTTPServer 8000
# Using Node.js (npx)
npx http-serverThen open http://localhost:8000 in your browser.