# Resonix-AG Website (Static) This website is fully static and deploys by uploading files as-is. ## Directory ```text website/ index.html styles.css main.js assets/ logo.png favicon.svg robots.txt sitemap.xml docs/ index.html getting-started.html install.html channels.html docs.css docs.js ``` ## Deployment 1. Upload everything under `website/` to your web root. 2. Set `index.html` as default document. 3. Keep `docs/` subfolder intact for docs routes. 4. Update `sitemap.xml` and `robots.txt` to your real domain. ## Local preview ```bash cd website python3 -m http.server 4173 ``` Open `http://localhost:4173`.