Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 22 additions & 13 deletions apps/builder/app/dashboard/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ import {
css,
globalCss,
theme,
PanelBanner,
Link,
buttonStyle,
} from "@webstudio-is/design-system";
import { AiIcon, BodyIcon, ExtensionIcon } from "@webstudio-is/icons";
import { BodyIcon, ExtensionIcon } from "@webstudio-is/icons";
import { NavLink, useLocation, useRevalidator } from "@remix-run/react";
import { atom } from "nanostores";
import { useStore } from "@nanostores/react";
Expand Down Expand Up @@ -202,12 +205,6 @@ export const Dashboard = () => {
prefix: <ExtensionIcon />,
children: "Welcome",
},
{
to: "https://wstd.us/inception",
target: "_blank",
prefix: <AiIcon />,
children: "Inception (Beta)",
},
]
: [
{
Expand All @@ -220,12 +217,6 @@ export const Dashboard = () => {
prefix: <ExtensionIcon />,
children: "Starter templates",
},
{
to: "https://wstd.us/inception",
target: "_blank",
prefix: <AiIcon />,
children: "Inception (Beta)",
},
]
}
/>
Expand All @@ -241,6 +232,24 @@ export const Dashboard = () => {
/>
</CollapsibleSection>
</nav>
<PanelBanner>
<Text variant="titles">Inception is live</Text>
<Text color="subtle">
An AI-powered design tool to explore ideas and instantly generate
HTML/CSS for Webstudio Builder or any other platform.
</Text>
<Link
className={buttonStyle({
color: "gradient",
})}
underline="none"
href="https://wstd.us/inception"
target="_blank"
color="contrast"
>
Get started with Inception
</Link>
</PanelBanner>
</Flex>
{view === "projects" && (
<Projects
Expand Down
Loading