diff --git a/documentation/src/refine-theme/demo-section.tsx b/documentation/src/refine-theme/demo-section.tsx new file mode 100644 index 00000000..c1e661c6 --- /dev/null +++ b/documentation/src/refine-theme/demo-section.tsx @@ -0,0 +1,232 @@ +import React from "react"; +import clsx from "clsx"; +import { LandingStartActionIcon } from "./icons/landing-start-action"; +import { LandingCopyCommandButton } from "./landing-copy-command-button"; +import Link from "@docusaurus/Link"; + +export const LandingTryItSection = ({ className }: { className?: string }) => { + return ( +
+
+

+ Get started now! +

+

+ Choose OpenPanel Enterprise or Community edition and start + hosting websites in minutes. +

+
+
+ +
+
+ ); +}; + +const LandingTryItOptionsSection = ({ + onClick, + className, +}: { + onClick: () => void; + className?: string; +}) => { + return ( +
+
+

+ Sign up for OpenPanel Enterprise version and offer premium features to your customers. +

+ + + + Go Enterprise + + +
+
+
+
+ or +
+
+
+
+

+ Get OpenPanel Community edition now and begin hosting websites within just 5 minutes. +

+ +
+
+
+ ); +};