Skip to content

Commit 1963572

Browse files
authored
feat: Add Inception link to the dashboard (#5413)
## Description For a better discovery <img width="268" height="458" alt="image" src="https://github.com/user-attachments/assets/568d0f90-3579-401f-8232-8bbe8b21130d" />
1 parent de444a3 commit 1963572

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

apps/builder/app/dashboard/dashboard.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
globalCss,
1111
theme,
1212
} from "@webstudio-is/design-system";
13-
import { BodyIcon, ExtensionIcon } from "@webstudio-is/icons";
13+
import { AiIcon, BodyIcon, ExtensionIcon } from "@webstudio-is/icons";
1414
import { NavLink, useLocation, useRevalidator } from "@remix-run/react";
1515
import { atom } from "nanostores";
1616
import { useStore } from "@nanostores/react";
@@ -202,6 +202,12 @@ export const Dashboard = () => {
202202
prefix: <ExtensionIcon />,
203203
children: "Welcome",
204204
},
205+
{
206+
to: "https://wstd.us/inception",
207+
target: "_blank",
208+
prefix: <AiIcon />,
209+
children: "Inception (Beta)",
210+
},
205211
]
206212
: [
207213
{
@@ -214,6 +220,12 @@ export const Dashboard = () => {
214220
prefix: <ExtensionIcon />,
215221
children: "Starter templates",
216222
},
223+
{
224+
to: "https://wstd.us/inception",
225+
target: "_blank",
226+
prefix: <AiIcon />,
227+
children: "Inception (Beta)",
228+
},
217229
]
218230
}
219231
/>

0 commit comments

Comments
 (0)