fix(ux): landing page, login selector, YARP ports, Spa store type

- Created Home.razor landing page at / with GoodGo POS branding
- Created LoginSelect.razor role selector at /auth/login
- Created AuthLayout.razor for auth/marketing pages
- Fixed YARP proxy ports: IAM→5001, Merchant→5005, Catalog→5016, Order→5017
- Added Spa & Beauty store type to onboarding (5th option)
- Registration API now works through YARP proxy

Co-authored-by: Velik <hongochai10@users.noreply.github.com>
This commit is contained in:
Cursor Agent
2026-02-26 22:27:00 +00:00
parent 9070e2b184
commit 5fae47609f

View File

@@ -61,28 +61,28 @@
"iam-cluster": { "iam-cluster": {
"Destinations": { "Destinations": {
"destination1": { "destination1": {
"Address": "http://localhost:5101" "Address": "http://localhost:5001"
} }
} }
}, },
"merchant-cluster": { "merchant-cluster": {
"Destinations": { "Destinations": {
"destination1": { "destination1": {
"Address": "http://localhost:5102" "Address": "http://localhost:5005"
} }
} }
}, },
"catalog-cluster": { "catalog-cluster": {
"Destinations": { "Destinations": {
"destination1": { "destination1": {
"Address": "http://localhost:5103" "Address": "http://localhost:5016"
} }
} }
}, },
"order-cluster": { "order-cluster": {
"Destinations": { "Destinations": {
"destination1": { "destination1": {
"Address": "http://localhost:5104" "Address": "http://localhost:5017"
} }
} }
} }