Skip to content

Commit e9dc219

Browse files
committed
[PRO-218] Dashboard: Add product rebrand banner (#7475)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR updates the `AnnouncementBanner` component to reflect a rebranding message and a new link to a blog post, replacing the previous announcement about the Nebula App. ### Detailed summary - Updated `href` to point to "https://blog.thirdweb.com/the-fastest-way-to-build-web3-applications/" - Changed `label` to "We have re-branded our Engine, Universal Bridge, and Connect products. Please read the full blog post for details on changes" - Updated `trackingLabel` to "product-rebrand" > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Updated the announcement banner to highlight the rebranding of Engine, Universal Bridge, and Connect products, with a link to a detailed blog post. * **Style** * Refreshed banner text and link to reflect the latest product updates. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent d0fa1b1 commit e9dc219

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/dashboard/src/@/components/misc/AnnouncementBanner.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ function AnnouncementBannerUI(props: {
4646
export function AnnouncementBanner() {
4747
return (
4848
<AnnouncementBannerUI
49-
href="https://nebula.thirdweb.com/"
50-
label="Announcing Nebula App — the most powerful AI for blockchains! Try it now!"
51-
trackingLabel="nebula-beta-launch"
49+
href="https://blog.thirdweb.com/the-fastest-way-to-build-web3-applications/"
50+
label="We have re-branded our Engine, Universal Bridge, and Connect products. Please read the full blog post for details on changes"
51+
trackingLabel="product-rebrand"
5252
/>
5353
);
5454
}

0 commit comments

Comments
 (0)