diff --git a/documentation/src/refine-theme/docs-section.tsx b/documentation/src/refine-theme/docs-section.tsx new file mode 100644 index 00000000..6b68aef6 --- /dev/null +++ b/documentation/src/refine-theme/docs-section.tsx @@ -0,0 +1,248 @@ +import React from "react"; +import clsx from "clsx"; +import { OpenPanelLogoIcon } from "./icons/openpanel-logo"; +import Link from "@docusaurus/Link"; + +export const LandingTryItSection = ({ className }: { className?: string }) => { + return ( +
+
+ +
+
+ ); +}; + +const LandingTryItOptionsSection = ({ + className, +}: { + className?: string; +}) => { + return ( +
+
+

+ OpenPanel offers a robust interface for end-users aiming to simplify the complexities of web and server management. +

+ +

+ From adding domains to managing your websites, our documentation covers everything you need to seamlessly navigate through the interface. +

+ + + + + OpenPanel Docs + + +
+
+
+
+ or +
+
+
+
+

+ OpenAdmin is tailored for administrators seeking fine-grained control over server configurations and management. +

+

+ Our documentation provides in-depth knowledge to help you customize and secure your server environment. +

+ + + + OpenAdmin Docs + + +
+
+
+ ); +};