Add frameworks listing and import

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Jonathan
2025-06-01 21:37:11 +02:00
committed by Sacha Al Himdani
parent 7cb84d8ce8
commit 1870e050ce
23 changed files with 1517 additions and 69 deletions

View File

@@ -0,0 +1,26 @@
export const availableFrameworks = [
{
id: "ISO27001-2022",
name: "ISO 27001 (2022)",
logo: "/logos/iso27001.png",
description: "Information security management systems",
},
{
id: "SOC2",
name: "SOC 2",
logo: "/logos/soc2.png",
description: "System and Organization Controls 2",
},
{
id: "GDPR",
name: "GDPR",
logo: "/logos/gdpr.png",
description: "General Data Protection Regulation",
},
{
id: "SOX",
name: "SOX",
logo: "/logos/sox.png",
description: "Sarbanes-Oxley Act",
},
];

View File

@@ -12,3 +12,4 @@ export { randomInt } from "./number";
export { getMeasureStateLabel, measureStates } from "./measure";
export { getRole, getRoles, peopleRoles } from "./people";
export { certificationCategoryLabel, certifications } from "./certifications";
export { availableFrameworks } from "./frameworks";