feat(marketplace): add dismissible connect wallet CTA banner for unauthenticated visitors - #902
Merged
Chucks1093 merged 5 commits intoSep 5, 2026
Conversation
…thenticated visitors Add a non-intrusive banner at the top of the marketplace section that encourages unauthenticated users to connect their Stellar wallet. The banner includes: - Banner text explaining the benefits of connecting - Connect Wallet button that opens the wallet connect modal - Dismiss (X) button that hides the banner for the session via sessionStorage - Automatic hiding when the user is already authenticated Closes accesslayerorg#859 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
|
@DammyAji Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Member
|
Fix CI |
Member
|
The verify check is failing on this PR. This is likely a TypeScript or lint error introduced in the CTA banner component. Run npm run build locally to see the exact TypeScript errors, then run npm run lint to catch any ESLint issues. Fix the errors, push the branch, and CI will re-run. |
The merge of dev into the CTA banner branch dropped the CreatorSpotlight and TrendingLeaderboard renders from HomePage but kept their imports, failing build (TS6133) and lint (no-unused-vars). Restore both sections so the marketplace keeps the upstream dev layout alongside the new banner, and mock the banner in DocumentTitle tests which otherwise crash on wagmi hooks without a provider. 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
The dev merge (2d0ae93) kept HomePage's MarketOverview import while dropping its render, and spliced dev-only imports into the slippage tolerance tests without using them, failing lint and tsc. Restore the MarketOverview section (mocking it in DocumentTitle tests) and remove the unused imports so Client CI passes again. 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #859
Summary
Add a non-intrusive dismissible banner at the top of the marketplace section that encourages unauthenticated visitors to connect their Stellar wallet.
What changed
src/components/common/ConnectWalletCtaBanner.tsx(new) — Banner component that:useAccountto check)useConnectsessionStoragecnutilitysrc/pages/HomePage.tsx— IntegratedConnectWalletCtaBannerbetween the Hero and TrendingCreators (marketplace) sectionsAcceptance Criteria
anytypesCloses #859