feat(home): adaptive dashboard landing for connected users (#837) - #1029
Merged
Baskarayelu merged 2 commits intoJul 30, 2026
Merged
Conversation
…rg#837) Disconnected visitors still see the original marketing hero. Connected users now see a summary dashboard inline at / instead of being sent to /dashboard manually. Changes: - src/pages/Home.tsx: split into Hero (disconnected), DashboardPreview (connected), and an adaptive Home export that branches on useWallet(). DashboardPreview shows three stat cards (trust tier + score, total bonded USDC, active bond count with per-bond unlock dates), a quick- actions row (Create bond / Open dashboard / View trust score), and an ActivityTimeline compact preview with a link to /attestations. LoadingSkeleton variant=dashboard is shown while isConnecting is true. Mock data mirrors the pattern already used in Dashboard.tsx and is clearly annotated for replacement when the API is wired up. - src/pages/Home.css: new dashboard-preview rules appended after the existing hero styles (home--dashboard, home--loading, home__dashHeader, home__walletChip, home__sectionTitle, home__statGrid, home__statCard, home__bondList, home__bondRow, home__activityFooter). Responsive breakpoint collapses stat grid to single column below 768px. - src/App.tsx: added missing TrustSummary lazy import that was already referenced in the route tree but never declared.
|
@Zizee1994 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! 🚀 |
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.
Disconnected visitors still see the original marketing hero. Connected users now see a summary dashboard inline at / instead of being sent to /dashboard manually.
Changes:
src/pages/Home.tsx: split into Hero (disconnected), DashboardPreview (connected), and an adaptive Home export that branches on useWallet(). DashboardPreview shows three stat cards (trust tier + score, total bonded USDC, active bond count with per-bond unlock dates), a quick- actions row (Create bond / Open dashboard / View trust score), and an ActivityTimeline compact preview with a link to /attestations. LoadingSkeleton variant=dashboard is shown while isConnecting is true. Mock data mirrors the pattern already used in Dashboard.tsx and is clearly annotated for replacement when the API is wired up.
src/pages/Home.css: new dashboard-preview rules appended after the existing hero styles (home--dashboard, home--loading, home__dashHeader, home__walletChip, home__sectionTitle, home__statGrid, home__statCard, home__bondList, home__bondRow, home__activityFooter). Responsive breakpoint collapses stat grid to single column below 768px.
src/App.tsx: added missing TrustSummary lazy import that was already referenced in the route tree but never declared.
closes UI/UX: Design a Dashboard landing page summarizing trust, bonds, and recent activity #837