File size: 1,034 Bytes
5c85958
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
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
```