@@ -3,23 +3,13 @@ import { QUICK_START_LAYER } from "@/app/docs/docs-data/docs-page-layers/quick-s
33import { COMPONENT_REGISTRY_LAYER } from "@/app/docs/docs-data/docs-page-layers/component-registry" ;
44import { FIELD_OVERRIDES_LAYER } from "@/app/docs/docs-data/docs-page-layers/field-overrides" ;
55import { CUSTOM_COMPONENTS_LAYER } from "@/app/docs/docs-data/docs-page-layers/custom-components" ;
6- import { CANVAS_EDITOR_LAYER } from "@/app/docs/docs-data/docs-page-layers/canvas-editor" ;
7- import { PAGES_PANEL_LAYER } from "@/app/docs/docs-data/docs-page-layers/pages-panel" ;
8- import { VARIABLES_PANEL_LAYER } from "@/app/docs/docs-data/docs-page-layers/variables-panel" ;
9- import { PROPS_PANEL_LAYER } from "@/app/docs/docs-data/docs-page-layers/props-panel" ;
10- import { APPEARANCE_PANEL_LAYER } from "@/app/docs/docs-data/docs-page-layers/appearance-panel" ;
11- import { IMMUTABLE_PAGES_LAYER } from "@/app/docs/docs-data/docs-page-layers/immutable-pages" ;
126import { PANEL_CONFIGURATION_LAYER } from "@/app/docs/docs-data/docs-page-layers/panel-configuration" ;
137import { VARIABLES_LAYER } from "@/app/docs/docs-data/docs-page-layers/variables" ;
148import { VARIABLE_BINDING_LAYER } from "@/app/docs/docs-data/docs-page-layers/variable-binding" ;
159import { READ_ONLY_MODE_LAYER } from "@/app/docs/docs-data/docs-page-layers/read-only-mode" ;
16- import { DATA_BINDING_LAYER } from "@/app/docs/docs-data/docs-page-layers/data-binding" ;
1710import { LAYER_STRUCTURE_LAYER } from "@/app/docs/docs-data/docs-page-layers/layer-structure" ;
1811import { PERSISTENCE_LAYER } from "@/app/docs/docs-data/docs-page-layers/persistence" ;
1912import { RENDERING_PAGES_LAYER } from "@/app/docs/docs-data/docs-page-layers/rendering-pages" ;
20- import { PAGE_THEMING_LAYER } from "@/app/docs/docs-data/docs-page-layers/page-theming" ;
21- import { EDITOR_PANEL_CONFIG_LAYER } from "@/app/docs/docs-data/docs-page-layers/editor-panel-config" ;
22- import { PROPS_PANEL_CUSTOMIZATION_LAYER } from "@/app/docs/docs-data/docs-page-layers/props-panel-customization" ;
2313
2414export const DOCS_PAGES = [
2515 // Core
@@ -30,31 +20,19 @@ export const DOCS_PAGES = [
3020 COMPONENT_REGISTRY_LAYER ,
3121 CUSTOM_COMPONENTS_LAYER ,
3222 FIELD_OVERRIDES_LAYER ,
33-
34- // Editor Features
35- CANVAS_EDITOR_LAYER ,
36- PAGES_PANEL_LAYER ,
37- IMMUTABLE_PAGES_LAYER ,
38- APPEARANCE_PANEL_LAYER ,
39- PROPS_PANEL_LAYER ,
40- VARIABLES_PANEL_LAYER ,
4123 PANEL_CONFIGURATION_LAYER ,
42- EDITOR_PANEL_CONFIG_LAYER ,
43- PROPS_PANEL_CUSTOMIZATION_LAYER ,
4424
4525 // Data & Variables
4626 VARIABLES_LAYER ,
4727 VARIABLE_BINDING_LAYER ,
4828 READ_ONLY_MODE_LAYER ,
49- DATA_BINDING_LAYER ,
5029
5130 // Layout & Persistence
5231 LAYER_STRUCTURE_LAYER ,
5332 PERSISTENCE_LAYER ,
5433
5534 // Rendering
5635 RENDERING_PAGES_LAYER ,
57- PAGE_THEMING_LAYER ,
5836
5937] as const ;
6038
@@ -89,58 +67,21 @@ export const MENU_DATA: DocPageNavItem[] = [
8967 title : "Component System" ,
9068 items : [
9169 {
92- title : "Getting Started with Components" ,
70+ title : "Components Intro " ,
9371 url : "/docs/component-registry" ,
9472 } ,
9573 {
96- title : "Creating Custom Components" ,
74+ title : "Custom Components" ,
9775 url : "/docs/custom-components" ,
9876 } ,
9977 {
100- title : "Advanced Component Configuration" ,
78+ title : "Advanced Configuration" ,
10179 url : "/docs/field-overrides" ,
102- }
103- ] ,
104- } ,
105- {
106- title : "Editor Features" ,
107- items : [
108- {
109- title : "Canvas Editor" ,
110- url : "/docs/canvas-editor" ,
111- } ,
112- {
113- title : "Pages Panel" ,
114- url : "/docs/pages-panel" ,
115- } ,
116- {
117- title : "Immutable Pages" ,
118- url : "/docs/immutable-pages" ,
119- } ,
120- {
121- title : "Appearance Panel" ,
122- url : "/docs/appearance-panel" ,
123- } ,
124- {
125- title : "Props Panel" ,
126- url : "/docs/props-panel" ,
127- } ,
128- {
129- title : "Variables Panel" ,
130- url : "/docs/variables-panel" ,
13180 } ,
13281 {
13382 title : "Panel Configuration" ,
13483 url : "/docs/panel-configuration" ,
135- } ,
136- {
137- title : "Editor Panel Config" ,
138- url : "/docs/editor-panel-config" ,
139- } ,
140- {
141- title : "Props Panel Customization" ,
142- url : "/docs/props-panel-customization" ,
143- } ,
84+ }
14485 ] ,
14586 } ,
14687 {
@@ -155,13 +96,9 @@ export const MENU_DATA: DocPageNavItem[] = [
15596 url : "/docs/variable-binding" ,
15697 } ,
15798 {
158- title : "Read Only Mode " ,
99+ title : "Editing Restrictions " ,
159100 url : "/docs/read-only-mode" ,
160101 } ,
161- {
162- title : "Data Binding" ,
163- url : "/docs/data-binding" ,
164- } ,
165102 ] ,
166103 } ,
167104 {
@@ -184,10 +121,6 @@ export const MENU_DATA: DocPageNavItem[] = [
184121 title : "Rendering Pages" ,
185122 url : "/docs/rendering-pages" ,
186123 } ,
187- {
188- title : "Page Theming" ,
189- url : "/docs/page-theming" ,
190- } ,
191124 ] ,
192125 }
193126] as const ;
@@ -228,7 +161,7 @@ export function getBreadcrumbsFromUrl(url: string) {
228161 url : "#"
229162 } ,
230163 page : {
231- title : "Page " ,
164+ title : "Home " ,
232165 url : url
233166 }
234167 } ;
0 commit comments