Skip to content

Commit 472a061

Browse files
committed
feat: node docs
1 parent 07cb66b commit 472a061

File tree

5 files changed

+960
-2
lines changed

5 files changed

+960
-2
lines changed

apps/docs/components/docs/callout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function Callout({
6969
children,
7070
...props
7171
}: CalloutProps) {
72-
const Icon = iconMap[type as keyof typeof iconMap];
72+
const Icon = iconMap[type as keyof typeof iconMap] || iconMap.info;
7373

7474
return (
7575
<SciFiCard

apps/docs/components/sidebar-content.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ export const contents: SidebarSection[] = [
6767
href: '/docs/sdk',
6868
icon: AtomIcon,
6969
},
70+
{
71+
title: 'Node SDK',
72+
href: '/docs/node-sdk',
73+
icon: CodeIcon,
74+
isNew: true,
75+
},
7076
{
7177
title: 'API',
7278
href: '/docs/api',

apps/docs/content/docs/meta.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"getting-started",
1010
"---Implementation---",
1111
"sdk",
12+
"node-sdk",
1213
"api",
1314
"api-keys",
1415
"Integrations",

0 commit comments

Comments
 (0)