Files
openpanel/website/src/refine-theme/enterprise-flexibility.tsx
Stefan Pejcic b8c5011b76 pakcages
2024-09-18 16:30:56 +02:00

89 lines
3.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from "react";
import clsx from "clsx";
import { LandingPureReactCode } from "./landing-pure-react-code";
import { CommonThemedImage } from "./common-themed-image";
export const EnterpriseFlexibility = ({
className,
}: {
className?: string;
}) => {
return (
<div className={clsx("flex flex-col", "not-prose", className)}>
<div
className={clsx(
"pl-4 landing-sm:pl-6 landing-md:pl-10",
"text-2xl landing-sm:text-[32px] landing-sm:leading-[40px]",
)}
>
<h2 className={clsx("dark:text-gray-0 text-gray-900")}>
Build with unmatched{" "}
<span
className={clsx(
"font-semibold",
"dark:text-refine-cyan-alt dark:drop-shadow-[0_0_30px_rgba(71,235,235,0.25)]",
"text-refine-blue drop-shadow-[0_0_30px_rgba(51,51,255,0.3)]",
)}
>
flexibility
</span>
.
</h2>
</div>
<div
className={clsx(
"grid",
"grid-cols-1 landing-md:grid-cols-2",
"gap-8 landing-md:gap-12 landing-lg:gap-6",
"mt-8 landing-md:mt-20",
)}
>
<LandingPureReactCode
description={`Dont settle for overpriced and outdated hosting panels. With OpenPanel, you maintain 100% control over your server and data at all times.`}
cta={false}
/>
<div
className={clsx(
"flex flex-col",
"dark:bg-landing-noise",
"dark:bg-gray-800 bg-gray-50",
"rounded-2xl landing-sm:rounded-3xl",
)}
>
<CommonThemedImage
className={clsx("rounded-2xl landing-sm:rounded-3xl")}
srcDark="https://refine.ams3.cdn.digitaloceanspaces.com/enterprise/lego-pieces-dark.png"
srcLight="https://refine.ams3.cdn.digitaloceanspaces.com/enterprise/lego-pieces-light.png"
/>
<div
className={clsx(
"flex flex-col",
"gap-2 landing-sm:gap-4",
"p-4 landing-sm:p-10",
"not-prose",
)}
>
<h2
className={clsx(
"text-base landing-sm:text-2xl",
"dark:text-gray-300 text-gray-900",
"font-semibold",
)}
>
Alternative to starting from scratch
</h2>
<p
className={clsx(
"text-base",
"dark:text-gray-400 text-gray-600",
)}
>
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.
</p>
</div>
</div>
</div>
</div>
);
};