diff --git a/apps/dashboard/src/app/nebula-app/(app)/components/ChatPageContent.tsx b/apps/dashboard/src/app/nebula-app/(app)/components/ChatPageContent.tsx index 58f58eb7b0f..da8a79eaaac 100644 --- a/apps/dashboard/src/app/nebula-app/(app)/components/ChatPageContent.tsx +++ b/apps/dashboard/src/app/nebula-app/(app)/components/ChatPageContent.tsx @@ -352,6 +352,7 @@ export function ChatPageContent(props: { {showEmptyState ? (
{}} prefillMessage={props.prefillMessage} diff --git a/apps/dashboard/src/app/nebula-app/(app)/components/EmptyStateChatPageContent.tsx b/apps/dashboard/src/app/nebula-app/(app)/components/EmptyStateChatPageContent.tsx index 07878e3f03a..9a0bf150b80 100644 --- a/apps/dashboard/src/app/nebula-app/(app)/components/EmptyStateChatPageContent.tsx +++ b/apps/dashboard/src/app/nebula-app/(app)/components/EmptyStateChatPageContent.tsx @@ -18,9 +18,13 @@ export function EmptyStateChatPageContent(props: { activeAccountAddress: string | undefined; setActiveWallet: (wallet: WalletMeta) => void; isConnectingWallet: boolean; + showAurora: boolean; }) { return ( -
+
+ {props.showAurora && ( + + )}
@@ -136,3 +140,22 @@ function DashedBgDiv(props: { /> ); } + +type AuroraProps = { + className?: string; +}; + +const Aurora: React.FC = ({ className }) => { + return ( +
+ ); +}; diff --git a/apps/dashboard/src/app/nebula-app/login/NebulaLoginPage.tsx b/apps/dashboard/src/app/nebula-app/login/NebulaLoginPage.tsx index bc8e7110ae6..f1b6b754fce 100644 --- a/apps/dashboard/src/app/nebula-app/login/NebulaLoginPage.tsx +++ b/apps/dashboard/src/app/nebula-app/login/NebulaLoginPage.tsx @@ -88,6 +88,7 @@ export function NebulaLoggedOutStatePage(props: { {showPage === "welcome" && (