From 655574fb6d292eeecf3f3ecdcd8b5397a4fea6de Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Wed, 10 Jul 2024 20:04:34 +0200 Subject: [PATCH] Create demo-section.tsx --- .../src/refine-theme/demo-section.tsx | 232 ++++++++++++++++++ 1 file changed, 232 insertions(+) create mode 100644 documentation/src/refine-theme/demo-section.tsx 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. +

+ +
+
+
+ ); +};