feat: scaffold holiday booking project

This commit is contained in:
2026-05-22 07:54:09 +00:00
commit abfc8dcf8e
39 changed files with 8941 additions and 0 deletions

15
ARCHITECTURE.md Normal file
View File

@@ -0,0 +1,15 @@
# Architecture
## Initial Shape
- `src/app` contains route-level UI and the health endpoint.
- `src/components` contains reusable layout pieces.
- `src/lib` contains shared data and infrastructure helpers.
- `prisma/` contains the initial database schema and seed entrypoint.
## Notes
- The UI starts as server-rendered pages with a small client-free shell.
- Database access will flow through Prisma once the app starts reading real records.
- Feature work should keep the booking state model and payment state model separate.