mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
85 lines
2.9 KiB
TypeScript
85 lines
2.9 KiB
TypeScript
import React from "react";
|
|
import clsx from "clsx";
|
|
import {
|
|
AccessControlIcon,
|
|
MonitorIcon,
|
|
SelfHostedIcon,
|
|
} from "../components/landing/icons";
|
|
|
|
export const EnterpriseSecurityFeatures = ({
|
|
className,
|
|
}: {
|
|
className?: string;
|
|
}) => (
|
|
<div className={clsx(className, "w-full")}>
|
|
<div
|
|
className={clsx(
|
|
"grid",
|
|
"grid-cols-1 landing-lg:grid-cols-3",
|
|
"gap-4 landing-md:gap-12 landing-lg:gap-6",
|
|
)}
|
|
>
|
|
{list.map((item, index) => {
|
|
return (
|
|
<div
|
|
key={index}
|
|
className={clsx(
|
|
"not-prose",
|
|
"p-4 landing-sm:p-10",
|
|
"flex",
|
|
"flex-col landing-sm:flex-row landing-lg:flex-col",
|
|
"items-start",
|
|
"gap-6",
|
|
"dark:bg-landing-noise",
|
|
"dark:bg-gray-800 bg-gray-50",
|
|
"rounded-2xl landing-sm:rounded-3xl",
|
|
)}
|
|
>
|
|
<div>{item.icon}</div>
|
|
<div className={clsx("flex", "flex-col", "gap-4")}>
|
|
<div
|
|
className={clsx(
|
|
"text-xl",
|
|
"font-semibold",
|
|
"text-gray-900 dark:text-gray-0",
|
|
)}
|
|
>
|
|
{item.title}
|
|
</div>
|
|
<div
|
|
className={clsx(
|
|
"text-base",
|
|
"dark:text-gray-400 text-gray-600",
|
|
)}
|
|
>
|
|
{item.description}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
const list = [
|
|
{
|
|
icon: <AccessControlIcon />,
|
|
title: "Secure by default",
|
|
description:
|
|
"Enable Two Factor authentification, block IP addresses per domain, control remote MySQL access and SSH access.",
|
|
},
|
|
{
|
|
icon: <SelfHostedIcon />,
|
|
title: "Limit resource usage",
|
|
description:
|
|
"Restrict the number of websites, domains, or databases, while enforcing hard limits on CPU, memory, port speed, disk usage, and inodes.",
|
|
},
|
|
{
|
|
icon: <MonitorIcon />,
|
|
title: "Monitor your server and users",
|
|
description:
|
|
"Built-in features include logging user activity, visualizing website visitors, and analyzing resource usage.",
|
|
},
|
|
];
|