Reachy_Mini / README.md
tfrere's picture
tfrere HF Staff
Initial commit: Reachy Mini Website
5c85958
|
raw
history blame
1.03 kB
---
title: Reachy Mini
emoji: πŸ€–
colorFrom: blue
colorTo: purple
sdk: docker
pinned: false
---
# Reachy Mini Website
The official website for Reachy Mini - an expressive companion robot designed for human interaction, creative coding, and AI experimentation.
## πŸš€ Auto-deploy
This site builds automatically on Hugging Face Spaces using Docker:
1. Push to this repo
2. HF builds the Docker image (Node.js + Vite build)
3. Serves the static site with nginx
## πŸ’» Local Development
```bash
# Install dependencies
yarn install
# Start dev server
yarn dev
# Build for production
yarn build
```
## πŸ› οΈ Stack
- **Vite** + **React 19**
- **MUI (Material-UI)** for components
- **React Router** for navigation
- **React Spring** for animations
## πŸ“ Structure
```
src/
β”œβ”€β”€ components/ # Reusable UI components
β”œβ”€β”€ context/ # React context (AppsContext)
β”œβ”€β”€ pages/ # Page components
β”œβ”€β”€ theme/ # MUI theme configuration
└── assets/ # Images, fonts
```