@@ -11,28 +11,28 @@ ObjectUI provides a comprehensive set of components built on React, Tailwind CSS
1111
1212Browse components by category to find what you need:
1313
14- ### [ Basic Components] ( /components/basic/text )
14+ ### [ Basic Components] ( /docs/ components/basic/text )
1515Essential building blocks: Text, Icon, Image, Separator, HTML
1616
17- ### [ Form Components] ( /components/form/button )
17+ ### [ Form Components] ( /docs/ components/form/button )
1818Interactive inputs: Button, Input, Select, Checkbox, Switch, Textarea, Slider
1919
20- ### [ Layout Components] ( /components/layout/container )
20+ ### [ Layout Components] ( /docs/ components/layout/container )
2121Structure your UI: Container, Card, Grid, Flex, Stack, Tabs
2222
23- ### [ Data Display] ( /components/data-display/badge )
23+ ### [ Data Display] ( /docs/ components/data-display/badge )
2424Show information: Badge, Avatar, Alert, List
2525
26- ### [ Feedback Components] ( /components/feedback/loading )
26+ ### [ Feedback Components] ( /docs/ components/feedback/loading )
2727User feedback: Loading, Progress, Skeleton
2828
29- ### [ Overlay Components] ( /components/overlay/dialog )
29+ ### [ Overlay Components] ( /docs/ components/overlay/dialog )
3030Floating elements: Dialog, Drawer, Tooltip, Popover
3131
32- ### [ Disclosure Components] ( /components/disclosure/accordion )
32+ ### [ Disclosure Components] ( /docs/ components/disclosure/accordion )
3333Show/hide content: Accordion, Collapsible
3434
35- ### [ Complex Components] ( /components/complex/table )
35+ ### [ Complex Components] ( /docs/ components/complex/table )
3636Advanced patterns: Table (with sorting, filtering, pagination)
3737
3838## Component Categories
@@ -41,73 +41,73 @@ Advanced patterns: Table (with sorting, filtering, pagination)
4141
4242The foundation of your UI. These are simple, single-purpose components:
4343
44- - ** [ Text] ( /components/basic/text ) ** - Display text with typography control
45- - ** [ Icon] ( /components/basic/icon ) ** - Render icons from Lucide React
46- - ** [ Image] ( /components/basic/image ) ** - Display images with lazy loading
47- - ** [ Separator] ( /components/basic/separator ) ** - Visual divider between content
48- - ** [ HTML] ( /components/basic/html ) ** - Render raw HTML content
44+ - ** [ Text] ( /docs/ components/basic/text ) ** - Display text with typography control
45+ - ** [ Icon] ( /docs/ components/basic/icon ) ** - Render icons from Lucide React
46+ - ** [ Image] ( /docs/ components/basic/image ) ** - Display images with lazy loading
47+ - ** [ Separator] ( /docs/ components/basic/separator ) ** - Visual divider between content
48+ - ** [ HTML] ( /docs/ components/basic/html ) ** - Render raw HTML content
4949
5050### Form Components
5151
5252Interactive elements for user input:
5353
54- - ** [ Button] ( /components/form/button ) ** - Trigger actions with multiple variants
55- - ** [ Input] ( /components/form/input ) ** - Text input with validation
56- - ** [ Select] ( /components/form/select ) ** - Dropdown selection
57- - ** [ Checkbox] ( /components/form/checkbox ) ** - Boolean selection
58- - ** [ Switch] ( /components/form/switch ) ** - Toggle switch
59- - ** [ Textarea] ( /components/form/textarea ) ** - Multi-line text input
60- - ** [ Slider] ( /components/form/slider ) ** - Numeric range selection
54+ - ** [ Button] ( /docs/ components/form/button ) ** - Trigger actions with multiple variants
55+ - ** [ Input] ( /docs/ components/form/input ) ** - Text input with validation
56+ - ** [ Select] ( /docs/ components/form/select ) ** - Dropdown selection
57+ - ** [ Checkbox] ( /docs/ components/form/checkbox ) ** - Boolean selection
58+ - ** [ Switch] ( /docs/ components/form/switch ) ** - Toggle switch
59+ - ** [ Textarea] ( /docs/ components/form/textarea ) ** - Multi-line text input
60+ - ** [ Slider] ( /docs/ components/form/slider ) ** - Numeric range selection
6161
6262### Layout Components
6363
6464Structure and organize your interface:
6565
66- - ** [ Container] ( /components/layout/container ) ** - Responsive container with max-width
67- - ** [ Card] ( /components/layout/card ) ** - Content card with header and footer
68- - ** [ Grid] ( /components/layout/grid ) ** - CSS Grid layout
69- - ** [ Flex] ( /components/layout/flex ) ** - Flexbox layout
70- - ** [ Stack] ( /components/layout/stack ) ** - Vertical or horizontal stack
71- - ** [ Tabs] ( /components/layout/tabs ) ** - Tabbed interface
66+ - ** [ Container] ( /docs/ components/layout/container ) ** - Responsive container with max-width
67+ - ** [ Card] ( /docs/ components/layout/card ) ** - Content card with header and footer
68+ - ** [ Grid] ( /docs/ components/layout/grid ) ** - CSS Grid layout
69+ - ** [ Flex] ( /docs/ components/layout/flex ) ** - Flexbox layout
70+ - ** [ Stack] ( /docs/ components/layout/stack ) ** - Vertical or horizontal stack
71+ - ** [ Tabs] ( /docs/ components/layout/tabs ) ** - Tabbed interface
7272
7373### Data Display
7474
7575Present data to users:
7676
77- - ** [ Badge] ( /components/data-display/badge ) ** - Small status indicators
78- - ** [ Avatar] ( /components/data-display/avatar ) ** - User profile images
79- - ** [ Alert] ( /components/data-display/alert ) ** - Contextual messages
80- - ** [ List] ( /components/data-display/list ) ** - Ordered or unordered lists
77+ - ** [ Badge] ( /docs/ components/data-display/badge ) ** - Small status indicators
78+ - ** [ Avatar] ( /docs/ components/data-display/avatar ) ** - User profile images
79+ - ** [ Alert] ( /docs/ components/data-display/alert ) ** - Contextual messages
80+ - ** [ List] ( /docs/ components/data-display/list ) ** - Ordered or unordered lists
8181
8282### Feedback Components
8383
8484Provide visual feedback:
8585
86- - ** [ Loading] ( /components/feedback/loading ) ** - Loading spinner
87- - ** [ Progress] ( /components/feedback/progress ) ** - Progress bar
88- - ** [ Skeleton] ( /components/feedback/skeleton ) ** - Loading placeholder
86+ - ** [ Loading] ( /docs/ components/feedback/loading ) ** - Loading spinner
87+ - ** [ Progress] ( /docs/ components/feedback/progress ) ** - Progress bar
88+ - ** [ Skeleton] ( /docs/ components/feedback/skeleton ) ** - Loading placeholder
8989
9090### Overlay Components
9191
9292Floating UI elements:
9393
94- - ** [ Dialog] ( /components/overlay/dialog ) ** - Modal dialog
95- - ** [ Drawer] ( /components/overlay/drawer ) ** - Slide-out drawer
96- - ** [ Tooltip] ( /components/overlay/tooltip ) ** - Hover tooltips
97- - ** [ Popover] ( /components/overlay/popover ) ** - Floating popover
94+ - ** [ Dialog] ( /docs/ components/overlay/dialog ) ** - Modal dialog
95+ - ** [ Drawer] ( /docs/ components/overlay/drawer ) ** - Slide-out drawer
96+ - ** [ Tooltip] ( /docs/ components/overlay/tooltip ) ** - Hover tooltips
97+ - ** [ Popover] ( /docs/ components/overlay/popover ) ** - Floating popover
9898
9999### Disclosure Components
100100
101101Expandable content:
102102
103- - ** [ Accordion] ( /components/disclosure/accordion ) ** - Expandable sections
104- - ** [ Collapsible] ( /components/disclosure/collapsible ) ** - Toggle content visibility
103+ - ** [ Accordion] ( /docs/ components/disclosure/accordion ) ** - Expandable sections
104+ - ** [ Collapsible] ( /docs/ components/disclosure/collapsible ) ** - Toggle content visibility
105105
106106### Complex Components
107107
108108Advanced, feature-rich components:
109109
110- - ** [ Table] ( /components/complex/table ) ** - Data table with sorting, filtering, and pagination
110+ - ** [ Table] ( /docs/ components/complex/table ) ** - Data table with sorting, filtering, and pagination
111111
112112## Usage Pattern
113113
@@ -175,15 +175,15 @@ All ObjectUI components share these characteristics:
175175
176176## Next Steps
177177
178- - ** [ Quick Start Guide] ( /guide/quick-start ) ** - Build your first ObjectUI app
179- - ** [ Schema Rendering] ( /concepts/schema-rendering ) ** - Learn how the engine works
180- - ** [ Component Registry] ( /concepts/component-registry ) ** - Register custom components
181- - ** [ Expressions] ( /concepts/expressions ) ** - Dynamic values with expressions
178+ - ** [ Quick Start Guide] ( /docs/ guide/quick-start ) ** - Build your first ObjectUI app
179+ - ** [ Schema Rendering] ( /docs/ concepts/schema-rendering ) ** - Learn how the engine works
180+ - ** [ Component Registry] ( /docs/ concepts/component-registry ) ** - Register custom components
181+ - ** [ Expressions] ( /docs/ concepts/expressions ) ** - Dynamic values with expressions
182182
183183## Need Help?
184184
185185Can't find what you're looking for? Check out:
186186
187- - [ Concepts] ( /concepts ) - Core concepts and architecture
188- - [ Advanced] ( /reference ) - API documentation and protocol specs
187+ - [ Concepts] ( /docs/ concepts ) - Core concepts and architecture
188+ - [ Advanced] ( /docs/ reference ) - API documentation and protocol specs
189189- [ GitHub] ( https://github.com/objectstack-ai/objectui ) - Report issues or contribute
0 commit comments