Files
prowler/ui/config/site.ts
T

10 lines
711 B
TypeScript

export type SiteConfig = typeof siteConfig;
const isCloudEnv = process.env.NEXT_PUBLIC_IS_CLOUD_ENV === "true";
export const siteConfig = {
name: isCloudEnv ? "Prowler Cloud" : "Prowler",
description:
'Prowler is the world\'s most widely used Open-Source Cloud Security Platform that automates security and compliance across any cloud environment. With hundreds of ready-to-use security checks, remediation guidance, and compliance frameworks, Prowler is built to "Secure ANY Cloud at AI Speed". Prowler delivers AI-driven, customizable, and easy-to-use assessments, dashboards, reports, and integrations, making cloud security simple, scalable, and cost-effective for organizations of any size.',
};