Skip to content

Commit bfc9188

Browse files
committed
adding content blocks and giving more details about each
1 parent 2e9a140 commit bfc9188

14 files changed

Lines changed: 840 additions & 452 deletions

File tree

astro.config.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,19 @@ export default defineConfig({
262262
label: 'Guides',
263263
items: [
264264
'react/guides',
265-
'react/guides/content-blocks',
265+
{
266+
label: 'Content Blocks',
267+
items: [
268+
'react/guides/content-blocks',
269+
'react/guides/content-blocks/route',
270+
'react/guides/content-blocks/card',
271+
'react/guides/content-blocks/group',
272+
'react/guides/content-blocks/portable-text',
273+
'react/guides/content-blocks/conditional',
274+
'react/guides/content-blocks/conditional-route',
275+
'react/guides/content-blocks/api-content',
276+
],
277+
},
266278
'react/guides/layouts',
267279
'react/guides/actions',
268280
'react/guides/conditions',

src/content/docs/react/guides/actions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { Aside } from '@astrojs/starlight/components'
1111

1212
Actions in the Vyuh framework provide a powerful way to add interactivity to
1313
your application. They define what happens when users interact with
14-
[content blocks](/react/guides/content-blocks), such as clicking a button,
14+
[content blocks](/react/guides/content-blocks/), such as clicking a button,
1515
submitting a form, or navigating between screens.
1616

1717
Actions are designed with a composable architecture that allows for multiple

src/content/docs/react/guides/conditions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Aside } from '@astrojs/starlight/components'
1010
## Introduction to Conditions
1111

1212
Conditions in the Vyuh framework provide a powerful way to create dynamic,
13-
context-aware [content](/react/guides/content-blocks) and interactions. They
13+
context-aware [content](/react/guides/content-blocks/) and interactions. They
1414
allow your application to make decisions based on various factors such as user
1515
state, device characteristics, time, or any custom logic you define.
1616

0 commit comments

Comments
 (0)