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
32 changes: 32 additions & 0 deletions apps/nebula/src/app/login/NebulaLoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,38 @@ export function NebulaLoggedOutStatePage(props: {
</div>
</header>

{/* Deprecation banner */}
<div className="bg-destructive p-6">
<div className="container text-md text-destructive-foreground">
<h4 className="font-bold text-lg">
Nebula is now{" "}
<Link
className="underline text-destructive-foreground hover:text-destructive-foreground/80"
href="https://thirdweb.com/ai"
target="_blank"
>
thirdweb AI.
</Link>{" "}
This site will be deprecated on September 30, 2025.
</h4>
<p>
To continue using thirdweb AI, please sign in to the{" "}
<Link
className="underline text-destructive-foreground hover:text-destructive-foreground/80"
href="https://thirdweb.com/login"
target="_blank"
>
thirdweb dashboard
</Link>{" "}
and create a new project.
</p>
<p>
If you have any funds left in your Nebula account, please withdraw
them before September 30, 2025.
</p>
</div>
</div>

{showPage === "connect" && (
<NebulaLoginPage redirectPath={`/?${redirectPathParams}`} />
)}
Expand Down
Loading