Initial commit: booking-ewa v1.0.0

Embedded Web App for EV charging slot bookings. Express backend with JWT
auth and AMPECO Public API proxy. React SPA with booking CRUD, availability
checking, and runtime design token theming.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Kaloyan Danchev
2026-03-18 19:34:13 +02:00
commit 87dadf1def
44 changed files with 8126 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import type { Config } from 'tailwindcss';
import { ewaUiPlugin } from '@ampeco/ewa-ui/plugin';
export default {
content: ['./index.html', './src/**/*.{ts,tsx}', './node_modules/@ampeco/ewa-ui/dist/**/*.js'],
plugins: [ewaUiPlugin],
} satisfies Config;