Skip to content

Commit 97cb1d8

Browse files
committed
feat: add core concept and figma config with navigation menu
1 parent 73dffe5 commit 97cb1d8

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

apps/landing/src/app/(detail)/docs/LeftMenu.tsx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,37 @@ export function LeftMenu() {
1818
to: '/docs/core-concepts/style-storage',
1919
children: 'Style Storage',
2020
},
21+
{
22+
to: '/docs/core-concepts/type-inference-system',
23+
children: 'Type Inference System',
24+
},
25+
{
26+
to: '/docs/core-concepts/optimize-css',
27+
children: 'Optimize CSS',
28+
},
29+
{
30+
to: '/docs/core-concepts/nm-base',
31+
children: 'N/M Base',
32+
},
2133
]}
2234
>
2335
Core Concepts
2436
</MenuItem>
2537
<MenuItem to="/docs/features">Features</MenuItem>
38+
<MenuItem
39+
subMenu={[
40+
{
41+
to: '/docs/figma-and-theme-integration/devup-figma-plugin',
42+
children: 'Devup Figma Plugin',
43+
},
44+
{
45+
to: '/docs/figma-and-theme-integration/devup-json',
46+
children: 'devup.json Configuration',
47+
},
48+
]}
49+
>
50+
Figma and Theme Integration
51+
</MenuItem>
2652
<MenuItem
2753
subMenu={[
2854
{

0 commit comments

Comments
 (0)