added Terms and Condition Page

This commit is contained in:
Ebube
2024-03-18 17:23:04 +01:00
parent db08d1201c
commit df6fe828e3
12 changed files with 890 additions and 32 deletions
+10 -9
View File
@@ -1,10 +1,11 @@
export class RouteHandler {
static homepage = "/"
static loginpage = '/login'
static getStarted = "/get-started"
static dashboardHome = '/dashboard/home'
static dashboardProfile = '/dashboard/profile'
static dashboardVerification = '/dashboard/verification'
static dashboardPayments = '/dashboard/payments'
static dashboardLegals = '/dashboard/legals'
}
static homepage = "/";
static loginpage = "/login";
static getStarted = "/get-started";
static dashboardHome = "/dashboard/home";
static dashboardProfile = "/dashboard/profile";
static dashboardVerification = "/dashboard/verification";
static dashboardPayments = "/dashboard/payments";
static dashboardLegals = "/dashboard/legals";
static termsAndConditions = "/terms-and-conditions";
}