feat(pricing): implement pricing comparison table UI - #599
Merged
Tybravo merged 3 commits intoAug 31, 2026
Conversation
Add a PricingTable component that maps every StellarProof capability to the Free, Personal, Business and Enterprise tiers, grouped by Verification, Certificates, Collaboration, Developer and Support. - Boolean cells render an availability icon with a screen-reader label, while quota/limit cells render their text value. - The table uses semantic table markup (caption, scope, colgroup headers) and scrolls horizontally on narrow viewports with the feature column pinned to the left edge. - Tier columns and feature groups are exported and overridable via props. - Rendered on the pricing page between the plan cards and the FAQ.
|
@Deb-Auth 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.
Summary
Implements the detailed feature comparison table for the pricing page. Visitors can now compare every capability across the four tiers in one place instead of cross-referencing the individual plan cards.
closes #397
What was added
frontend/app/pricing/components/PricingTable.tsxPricingTablecomponent rendering a four-column comparison table (Free, Personal, Business, Enterprise).PricingTierColumndescribes a plan column (name, price label, popular flag, CTA).PricingFeature.valuesis aRecord<PricingTierId, PricingFeatureValue>, so TypeScript enforces that every feature declares a value for every tier and the table can never go ragged.boolean(renders an availability icon) or astring(renders a quota/limit such as "Unlimited", "Testnet", "10").PRICING_TIER_COLUMNS,PRICING_FEATURE_GROUPS) and can be overridden through props, which keeps the component reusable and testable.frontend/app/pricing/page.tsxDesign and accessibility notes
<caption>(screen-reader only),scope="col"on tier headers,scope="row"on feature headers, andscope="colgroup"on group separator rows.aria-hiddenicon with an "Included" / "Not included" screen-reader label, so the table is not conveyed through iconography alone.primary/darkbluetheme tokens, light and dark mode).Tests
Added
frontend/app/pricing/components/__tests__/PricingTable.test.tsxcovering:pnpm --filter web run lintreports no new errors or warnings from these files.