import clsx from "clsx"; import React, { FC } from "react"; import { ComponentsIcon, RoutesIcon, UtilitiesIcon, InterfacesIcon, ProvidersIcon, } from "../components/landing/icons"; import { useInView } from "framer-motion"; import { LandingSectionCtaButton } from "./landing-section-cta-button"; const list = [ { label: "Resource limiting", icon: , }, { label: "Remote backups", icon: , }, { label: "Service settings", icon: , }, { label: "Custom branding", icon: , }, { label: "Multi-tenancy", icon: , }, ]; type Props = { className?: string; }; export const LandingAlreadyInvented: FC = ({ className }) => { const ref = React.useRef(null); const inView = useInView(ref, { once: true }); return (
{list.map((item, index) => { const paddingHorizontal = `calc((100% - 160px - ${ (list.length - 1) * 36 }px) / 2)`; return (
{item.icon}
{item.label}
); })}
Wheel? Already invented.

All the necessary features for running a web hosting server are integrated, eliminating the need to purchase additional software for tasks like backups, WordPress management or user isolation.

Features
); };