Commit: fd8fe83b
Scope: products/sandbox/web/src/pages/Pricing.tsx
claude — 2 findings
Scope: products/sandbox/web/src/pages/Pricing.tsx
-
🟡 [low] Footer missing social icon links present on Landing page
products/sandbox/web/src/pages/Pricing.tsx:401The Pricing page footer omits the GitHub/Twitter/Discord icon buttons and the social SVGs that the Landing page includes. The footer structure diverges between pages — Landing has a three-column layout (brand, links, social icons) while Pricing has a two-column layout (brand, links only). This means users on the Pricing page lose the social media navigation. This is likely an oversight in the copy…
-
🟡 [low] Comparison table not responsive on mobile
products/sandbox/web/src/pages/Pricing.tsx:297The comparison table uses a standard
<table>inside a fixed-width container with no horizontal scroll wrapper or mobile-specific layout. On narrow viewports the four-column table will either overflow or compress text illegibly. The pricing cards above usegrid-cols-1 md:grid-cols-3for responsiveness, but the table has no mobile adaptation.