tambah akses permision button dan keycloak

This commit is contained in:
2025-07-16 12:44:23 +07:00
parent 14dbe01920
commit 43c0aca0c0
43 changed files with 1018 additions and 162 deletions
+21
View File
@@ -0,0 +1,21 @@
/*Revenue Projects*/
type RevenueProjects={
img: string;
leadname: string;
designation: string;
projectname: string;
statuscolor: string;
statustext: string;
money: string;
};
/*Performance*/
type Performance={
icon: string;
subtitle: string;
title: string;
color: string;
};
export type{RevenueProjects,Performance}
+45
View File
@@ -0,0 +1,45 @@
/*Revenue Forecast Projects*/
type RevenueForecast={
icon: string;
subtext: string;
profit: string;
bgcolor:string;
color: string;
};
/*Annual Profit*/
type AnnualProfit={
title: string;
subtitle: string;
price: string;
percent:string;
color: string;
};
/*Sales from Locations*/
type SalesFromLocation={
name: string;
percentage:string;
color: string;
};
// Daily Activities
type DailyActivities = {
title: string;
subtitle: string;
textcolor: string;
boldtext: boolean;
line: boolean;
link: string;
url: string;
};
/*User cards*/
type userCard ={
img: string;
};
export type{RevenueForecast ,AnnualProfit, SalesFromLocation,DailyActivities,userCard}
+11
View File
@@ -0,0 +1,11 @@
/*Revenue Forecast Projects*/
type Iconcard={
bg: string;
icon: string;
color:string;
title:string;
price:string;
link:string;
};
export type{Iconcard}