43 lines
2.2 KiB
TypeScript
43 lines
2.2 KiB
TypeScript
export type ProjectItem = {
|
|
title: string;
|
|
content: string;
|
|
};
|
|
|
|
export const projectItemsData: ProjectItem[] = [
|
|
{
|
|
title: "Seamless integration",
|
|
content:
|
|
"Implementation of this product in to your day to day workflow should not present with any challenges for your core team. Only training and understanding of the of the product will be needed by your administrators and/or your IT department.",
|
|
},
|
|
{
|
|
title: "Email protection",
|
|
content:
|
|
"Identifies and quarantines emails with potential malware or ransomware attachments. Prevents threats from domain impersonation, spoofing, and other misleading phishing attempts. Allows you to create and maintain a list of individual senders or sending domains to allow or block from your business inboxes.",
|
|
},
|
|
{
|
|
title: "Email encryption",
|
|
content:
|
|
"Fully automated process for both inbound and outbound emails with in the company or B2B communications. Removing a request of end user to check boxes by automating the process based on the email constant. Allowing your team to determent what is considered to be a sensitive information and ensuring that system will encrypt your next critical email.",
|
|
},
|
|
{
|
|
title: "User risk reporting",
|
|
content:
|
|
"Get a full overview of your end user risk status across all the application at one place. Have one stop shop both for user application risk and use best coerce of action to mitigated any form of user risk. ",
|
|
},
|
|
{
|
|
title: "User activity tracking",
|
|
content:
|
|
"Allows you to create a full time line of user activity from knowing location to time and action that took place. Keeping track of all user app activity in one place allows you to better track compromised user and act on mitigation of any breaches. ",
|
|
},
|
|
{
|
|
title: "Organization security overview",
|
|
content:
|
|
"Connect all the web-app tools that are used with in the company and have a full overview of the best course of action on what security changes or tuning need to be done to ensure maximum level of security.",
|
|
},
|
|
// {
|
|
// title: "Malware protection",
|
|
// content:
|
|
// "Continuous malware detection and response powered by up-to-date threat intelligence.",
|
|
// },
|
|
];
|