| # How to Update the Hugging Face Space | |
| Space URL: | |
| ```text | |
| https://huggingface.co/spaces/lablab-ai-amd-developer-hackathon/ElevenClip-AI | |
| ``` | |
| ## Manual Upload | |
| 1. Open the Space. | |
| 2. Click `Files`. | |
| 3. Open `index.html`. | |
| 4. Click the edit pencil. | |
| 5. Replace the default file with the contents of `hf-space/index.html`. | |
| 6. Commit the change. | |
| 7. Add or edit `README.md`. | |
| 8. Replace it with the contents of `hf-space/README.md`. | |
| 9. Commit the change. | |
| 10. Go back to the `App` tab. | |
| The Space should now show the ElevenClip.AI landing page instead of the default static Space message. | |
| Important: Hugging Face Spaces read their runtime configuration from the YAML block at the very top of `README.md`. Do not remove the opening `---`, `sdk: static`, or `app_file: index.html` lines. | |
| ## Git Option | |
| If you have Hugging Face Git credentials configured: | |
| ```bash | |
| git clone https://huggingface.co/spaces/lablab-ai-amd-developer-hackathon/ElevenClip-AI | |
| cp hf-space/index.html ElevenClip-AI/index.html | |
| cp hf-space/README.md ElevenClip-AI/README.md | |
| cd ElevenClip-AI | |
| git add index.html README.md | |
| git commit -m "Add ElevenClip.AI landing page" | |
| git push | |
| ``` | |