From b53c9f0ac174e18d8ca5ce352e38111bb90b0944 Mon Sep 17 00:00:00 2001 From: "yongen.loong" Date: Mon, 9 Sep 2024 18:33:16 +0800 Subject: [PATCH] remove visual editor --- app/visual-editor/page.tsx | 27 --------------------------- components/top-menu.tsx | 1 - 2 files changed, 28 deletions(-) delete mode 100644 app/visual-editor/page.tsx diff --git a/app/visual-editor/page.tsx b/app/visual-editor/page.tsx deleted file mode 100644 index a33f867..0000000 --- a/app/visual-editor/page.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import { - ResizablePanelGroup, - ResizablePanel, - ResizableHandle, -} from "@/components/ui/resizable"; -import { VisualEditorProvider } from "@/components/visual/context"; -import { Preview } from "@/components/visual/preview"; -import { SidePanel } from "@/components/visual/side-panel"; - -export default function Page() { - return ( -
-

Visual Editor

- - - - - - - - - - - -
- ); -} diff --git a/components/top-menu.tsx b/components/top-menu.tsx index 1b86fbb..8983155 100644 --- a/components/top-menu.tsx +++ b/components/top-menu.tsx @@ -19,7 +19,6 @@ export default function TopMenu() { { href: "/workspaces", children: "Workspaces" }, { href: "/tutorials", children: "Tutorials" }, { href: "/deployments", children: "Deployments" }, - { href: "/visual-editor", children: "Visual Editor" }, { href: "https://github.com/AElfProject", children: "GitHub" }, ];