Skip to content

Commit a92617f

Browse files
authored
docs cleanup (#5981)
1 parent 8e82ec8 commit a92617f

File tree

14 files changed

+64
-137
lines changed

14 files changed

+64
-137
lines changed
Loading
Loading

apps/portal/src/app/nebula/faqs/page.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@
44

55
We are rolling out Nebula approval in batches daily - stay tuned!
66

7+
### Does Nebula have memory from past conversations?
8+
Nebula retains memory within the confines of a session.
9+
10+
### What is the context size of Nebula?
11+
The context size or window is 128k tokens.
12+
713
### Will Nebula be open source?
814

915
Nebula is not currently open source. We are exploring open sourcing Nebula in the future.
1016

1117
### When will pricing be available for Nebula?
1218

13-
Pricing options will be available in beta (estimated mid January 2025).
19+
Pricing options will be available in beta. Nebula is still being tested in alpha.

apps/portal/src/app/nebula/page.mdx

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { PencilRulerIcon, HandCoinsIcon, BlocksIcon, WorkflowIcon, ShieldCheckIcon, CirclePlusIcon } from "lucide-react";
2-
import { DocImage, createMetadata, FeatureCard } from "@doc";
1+
import { Wallet, File, MessageCircle, Braces, Bot, Blocks } from "lucide-react";
2+
import { DocImage, createMetadata, FeatureCard, GithubTemplateCard, Stack } from "@doc";
33
import NebulaDiagram from "./assets/nebula-diagram.png";
4-
4+
import SupportedChains from "./assets/supported-chains.png";
55

66
# What is Nebula?
77

@@ -19,39 +19,53 @@ Nebula is currently available in Alpha. [Join the waitlist.](https://thirdweb.co
1919
<FeatureCard
2020
title="Proprietary Blockchain Model"
2121
description="Trained on over 2,500+ EVM networks and 1M+ contracts"
22-
iconUrl={<PencilRulerIcon />}
22+
iconUrl={<File />}
2323
/>
2424

2525
<FeatureCard
2626
title="Execute Transactions"
2727
description="Deploy contracts, send transactions, and more with natural language"
28-
iconUrl={<CirclePlusIcon/>}
28+
iconUrl={<MessageCircle/>}
2929
/>
3030

3131
<FeatureCard
3232
title="Wallet Integration"
3333
description="Connect with over 500+ EOAs, in-app wallets, and smart wallets with session keys"
34-
iconUrl={<ShieldCheckIcon/>}
34+
iconUrl={<Wallet/>}
3535
/>
3636

3737
<FeatureCard
3838
title="Easy-to-use API"
3939
description="Integrate into existing applications with ease using Nebula's API"
40-
iconUrl={<WorkflowIcon/>}
40+
iconUrl={<Braces />}
4141
/>
4242

4343
<FeatureCard
4444
title="Create Autonomous Agents"
4545
description="Wallet execution agents for automated transactions on any EVM chain"
46-
iconUrl={<HandCoinsIcon/>}
46+
iconUrl={<Bot/>}
4747
/>
4848

4949
<FeatureCard
5050
title="Framework Integration"
5151
description="Integrate with popular AI orchestration frameworks"
52-
iconUrl={<BlocksIcon/>}
52+
iconUrl={<Blocks/>}
5353
/>
5454
</div>
5555

5656
## Supported Chains
5757
Nebula is supported on every EVM compatible chain. To view the full list, visit [thirdweb chainlist](https://thirdweb.com/chainlist).
58+
59+
<DocImage src={SupportedChains} />
60+
61+
## Templates
62+
63+
<Stack>
64+
65+
<GithubTemplateCard title="Bouncer Eliza Agent" href="https://github.com/thirdweb-example/bouncer-eliza-agent" />
66+
67+
</Stack>
68+
69+
70+
71+

apps/portal/src/app/nebula/sidebar.tsx

Lines changed: 33 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
import type { SideBar } from "@/components/Layouts/DocLayout";
2+
import { NebulaSideIcon, TypeScriptIcon } from "@/icons";
3+
24
import {
3-
CodeIcon,
4-
EditIcon,
5-
NebulaSideIcon,
6-
PluginIcon,
7-
QuestionIcon,
8-
RocketIcon,
9-
TroubleshootIcon,
10-
} from "@/icons";
5+
Blocks,
6+
Braces,
7+
Code,
8+
ExternalLink,
9+
MessageCircleQuestion,
10+
PencilRuler,
11+
Rocket,
12+
Wrench,
13+
} from "lucide-react";
1114

1215
export const sidebar: SideBar = {
1316
name: "Nebula",
@@ -20,17 +23,22 @@ export const sidebar: SideBar = {
2023
{
2124
name: "Prompt Guide",
2225
href: "/nebula/prompt-guide",
23-
icon: <EditIcon />,
26+
icon: <PencilRuler />,
27+
},
28+
{
29+
name: "Playground",
30+
href: "https://nebula.thirdweb.com",
31+
icon: <ExternalLink />,
2432
},
2533
{
2634
name: "Get Started",
2735
href: "/nebula/get-started",
28-
icon: <RocketIcon />,
36+
icon: <Rocket />,
2937
},
3038
{
3139
name: "API Reference",
3240
href: "/nebula/api-reference",
33-
icon: <CodeIcon />,
41+
icon: <Braces />,
3442
links: [
3543
{
3644
name: "GET",
@@ -90,10 +98,21 @@ export const sidebar: SideBar = {
9098
},
9199
],
92100
},
101+
{
102+
name: "SDK Reference",
103+
icon: <Code />,
104+
links: [
105+
{
106+
name: "Typescript",
107+
href: "/references/typescript/v5/chat",
108+
icon: <TypeScriptIcon />,
109+
},
110+
],
111+
},
93112
{
94113
name: "Plugins",
95114
href: "/nebula/plugins",
96-
icon: <PluginIcon />,
115+
icon: <Blocks />,
97116
links: [
98117
{
99118
name: "Eliza",
@@ -104,12 +123,12 @@ export const sidebar: SideBar = {
104123
{
105124
name: "Troubleshoot",
106125
href: "/nebula/troubleshoot",
107-
icon: <TroubleshootIcon />,
126+
icon: <Wrench />,
108127
},
109128
{
110129
name: "FAQs",
111130
href: "/nebula/faqs",
112-
icon: <QuestionIcon />,
131+
icon: <MessageCircleQuestion />,
113132
},
114133
],
115134
};

apps/portal/src/icons/index.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,7 @@ export { NebulaIcon } from "./products/nebula/NebulaIcon";
3535
export { GamingIcon } from "./solutions/GamingIcon";
3636

3737
//sidebar
38-
export { EditIcon } from "./sidebar/EditIcon";
39-
export { CodeIcon } from "./sidebar/CodeIcon";
40-
export { BrickIcon } from "./sidebar/BrickIcon";
41-
export { QuestionIcon } from "./sidebar/QuestionIcon";
4238
export { NebulaSideIcon } from "./sidebar/NebulaSideIcon";
43-
export { PluginIcon } from "./sidebar/PluginIcon";
44-
export { TroubleshootIcon } from "./sidebar/TroubleshootIcon";
45-
export { RocketIcon } from "./sidebar/RocketIcon";
4639

4740
//api icons
4841
export { GetIcon } from "./API/GetIcon";

apps/portal/src/icons/sidebar/BrickIcon.tsx

Lines changed: 0 additions & 15 deletions
This file was deleted.

apps/portal/src/icons/sidebar/CodeIcon.tsx

Lines changed: 0 additions & 15 deletions
This file was deleted.

apps/portal/src/icons/sidebar/EditIcon.tsx

Lines changed: 0 additions & 15 deletions
This file was deleted.

apps/portal/src/icons/sidebar/NebulaSideIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function NebulaSideIcon(props: { className?: string }) {
1313
fillRule="evenodd"
1414
clipRule="evenodd"
1515
d="M8.59184 6.90662C11.0371 4.46133 13.7786 2.91523 16.1533 2.32154C18.5742 1.71634 20.2355 2.1603 21.1254 3.05015C21.9057 3.83049 22.3432 5.20416 22.0309 7.163C21.9445 7.15756 21.8575 7.1548 21.7698 7.1548C19.5107 7.1548 17.6794 8.98613 17.6794 11.2452C17.6794 12.2928 18.0732 13.2484 18.7208 13.9721C18.2788 14.5186 17.7946 15.058 17.2689 15.5837C14.8236 18.029 12.0822 19.5751 9.7074 20.1688C7.2866 20.774 5.62522 20.33 4.73537 19.4402C3.95504 18.6598 3.5176 17.2862 3.82985 15.3274C3.91601 15.3329 4.00289 15.3356 4.09041 15.3356C6.34948 15.3356 8.18082 13.5043 8.18082 11.2452C8.18082 10.1978 7.7871 9.24226 7.1396 8.51864C7.58174 7.972 8.066 7.43246 8.59184 6.90662ZM4.13457 9.20047C4.13455 9.2005 4.13454 9.20053 4.13452 9.20056C4.22553 9.20245 4.31509 9.21029 4.4028 9.22371C5.38406 9.3741 6.13561 10.2219 6.13561 11.2452C6.13561 12.3747 5.21994 13.2904 4.09041 13.2904C3.98625 13.2904 3.88392 13.2826 3.78395 13.2676C3.25576 13.188 2.79374 12.9065 2.4791 12.5041C2.47903 12.5043 2.47896 12.5045 2.4789 12.5047C2.20717 12.1575 2.0452 11.7203 2.0452 11.2452C2.0452 10.1157 2.96087 9.2 4.09041 9.2C4.10517 9.2 4.11989 9.20016 4.13457 9.20047ZM5.43149 7.37971C5.95254 6.72404 6.52463 6.08148 7.14567 5.46044C12.4703 0.135767 19.3767 -1.59084 22.5716 1.60397C24.0329 3.06534 24.4646 5.30331 23.9931 7.81126C25.1168 8.54032 25.8602 9.80595 25.8602 11.2452C25.8602 13.5043 24.0288 15.3356 21.7698 15.3356C21.3002 15.3356 20.8491 15.2565 20.4291 15.1108C19.9081 15.7664 19.336 16.4089 18.7151 17.0299C13.3904 22.3545 6.484 24.0811 3.28919 20.8863C1.8279 19.425 1.39622 17.1872 1.86752 14.6795C0.743549 13.9505 6.29225e-08 12.6847 0 11.2452C-9.8742e-08 8.98613 1.83134 7.1548 4.09041 7.1548C4.56013 7.1548 5.01137 7.23397 5.43149 7.37971ZM21.4844 9.21976C21.4843 9.2198 21.4843 9.21984 21.4843 9.21988C21.5776 9.20684 21.6729 9.20011 21.7698 9.20011C22.4245 9.20011 23.0073 9.50769 23.3816 9.98623C23.3816 9.98622 23.3816 9.98621 23.3816 9.98621C23.6532 10.3333 23.815 10.7704 23.815 11.2452C23.815 12.3747 22.8993 13.2904 21.7698 13.2904C20.6402 13.2904 19.7246 12.3747 19.7246 11.2452C19.7246 10.2125 20.4899 9.35861 21.4844 9.21976ZM12.9303 9.19996C14.0598 9.19996 14.9755 10.1156 14.9755 11.2452C14.9755 12.3747 14.0598 13.2904 12.9303 13.2904C11.8008 13.2904 10.8851 12.3747 10.8851 11.2452C10.8851 10.1156 11.8008 9.19996 12.9303 9.19996Z"
16-
fill="#6E6E6E"
16+
fill="currentColor"
1717
/>
1818
</svg>
1919
);

0 commit comments

Comments
 (0)