add client: React + Vite + Capacitor prototype

Web app React 18 + TypeScript con quattro schermate: Setup (URL server +
password + test connessione), Ingredients (lista ingredienti e preferenze),
Recipes (lista 3 ricette generate), RecipeDetail (dettaglio e procedimento).
Persistenza URL/password via Capacitor Preferences. Pronto per build Android.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 00:08:20 +02:00
parent 3d330655a6
commit f1f9be5ded
17 changed files with 3838 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Appetito</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>