diff --git a/documentation/src/pages/docs/index.tsx b/documentation/src/pages/docs/index.tsx index e765984f..54c09c7d 100644 --- a/documentation/src/pages/docs/index.tsx +++ b/documentation/src/pages/docs/index.tsx @@ -1,30 +1,20 @@ +import React from "react"; import Head from "@docusaurus/Head"; -import { FooterRedditIcon as RedditIcon } from "@site/src/refine-theme/icons/footer-reddit"; import { BlogFooter } from "@site/src/refine-theme/blog-footer"; import { CommonHeader } from "@site/src/refine-theme/common-header"; import { CommonLayout } from "@site/src/refine-theme/common-layout"; -import { GithubIcon } from "@site/src/refine-theme/icons/github"; -import { JoinUsIcon } from "@site/src/refine-theme/icons/join-us"; -import { MailIcon } from "@site/src/refine-theme/icons/mail"; -import { MarkerIcon } from "@site/src/refine-theme/icons/marker"; -import { OpenSourceIcon } from "@site/src/refine-theme/icons/open-source"; -import { DiscordIcon, TwitterIcon } from "@site/src/refine-theme/icons/popover"; -import Link from "@docusaurus/Link"; import clsx from "clsx"; -import React from "react"; -import { useColorMode } from "@docusaurus/theme-common"; -import { YCombinatorCircleIcon } from "@site/src/refine-theme/icons/ycombinator-circle"; -import { CommonThemedImage } from "@site/src/refine-theme/common-themed-image"; +import { LandingTryItSection } from "@site/src/refine-theme/docs-section"; -const About: React.FC = () => { - const { colorMode } = useColorMode(); +const Demo: React.FC = () => { return ( - <> + - +
+
{

{ OpenPanel - , and{" "} + and{" "} OpenAdmin .

+ +
- -
-

-Whether you are a new user or an experienced administrator, our comprehensive documentation is designed to get you up and running quickly, while also providing deep insights into advanced features and customization options. Explore our resources below to make the most out of our products. -

- -
- {/* First Column */} -
- -

OpenPanel Docs

- OpenPanel Documentation - -
- -

-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. -

-
- - {/* Second Column */} -
- -

OpenAdmin Docs

- OpenAdmin Documentation - -
-

-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. -

-
-
-
-
- +
); }; -export default function AboutPage() { - return ( - - - - ); -} +export default Demo;