17 lines
663 B
TypeScript
17 lines
663 B
TypeScript
export class RouteHandler {
|
|
static homepage = "/";
|
|
static loginpage = "/login";
|
|
static personalBanking = "/personal-banking";
|
|
static businessBanking = "/business-banking";
|
|
static cooperateBanking = "/cooperate-banking";
|
|
static letsGetStarted = "/lets-get-started";
|
|
static getStarted = "/get-started";
|
|
static dashboardHome = "/dashboard/home";
|
|
static dashboardProfile = "/dashboard/profile";
|
|
static dashboardVerification = "/dashboard/verification";
|
|
static dashboardReference = "/dashboard/reference";
|
|
static dashboardLegals = "/dashboard/legals";
|
|
static termsAndConditions = "/terms-and-conditions";
|
|
static paymentpage = "/payment";
|
|
}
|