feat: Initialize BizMatch application with core UI components, routing, listing pages, backend services, migration scripts, and vulnerability management.

This commit is contained in:
Timo
2026-01-03 23:05:38 +01:00
parent e32e43d17f
commit e3e726d8ca
42 changed files with 1478 additions and 1579 deletions

View File

@@ -37,7 +37,8 @@ export class LoginComponent {
user.subscriptionPlan = activeSubscription[0].metadata['plan'] === 'Broker Plan' ? 'broker' : 'professional';
this.userService.saveGuaranteed(user);
} else {
this.router.navigate([`/pricing`]);
// Pricing page removed - redirect to home
this.router.navigate([`/home`]);
return;
}
}