import clsx from "clsx"; import React, { FC } from "react"; import { AccessControlIcon, BlackBoxIcon, IdentityIcon, MonitorIcon, SelfHostedIcon, SupportIcon, } from "../components/landing/icons"; import { LandingSectionCtaButtonAlt } from "./landing-section-cta-button"; const list = [ { icon: , 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: , title: "Manage users and websites", description: "Assign administrative or user roles, manage permissions, restrict access to features, and more.", }, { icon: , title: "Secure by default", description: "Enable Two Factor authentification, block IP addresses per domain, control remote MySQL access and SSH access.", }, { icon: , title: "Match your brand", description: "Incorporate your brand colors, limit features, configure nameservers, and more.", }, { icon: , title: "Monitor your server and users", description: "Built-in features include logging user activity, visualizing website visitors, and analyzing resource usage.", }, { icon: , title: "Get supported by the experts", description: "Enroll in plans that provide priority support, trainings and consulting.", }, ]; type Props = { className?: string; }; export const LandingEnterpriseDevelopers: FC = ({ className }) => { return (

Hosting providers{" "} ❤️ {" "} OpenPanel .

OpenPanel is designed to target the specific pain points of larger hosting providers by giving top priority to{" "} security .

{list.map((item, index) => { return (
{item.icon}
{item.title}
{item.description}
); })}
Check out OpenPanel BETA
); };