## What changed - `src/components/PlatformStats/PlatformStats.tsx` is a well-built stats grid with loading skeletons - But `src/app/page.tsx` uses its own inline `StatCard` component instead of PlatformStats - Two separate implementations of the same thing ## Why - DRY: the home page should use the existing `PlatformStats` component or merge the implementations - Currently there's duplicate stat rendering logic ## How to test 1. Compare `src/app/page.tsx` StatCard with `src/components/PlatformStats/PlatformStats.tsx` 2. Observe both render similar stats (TVL, pools, users) with different UI
What changed
src/components/PlatformStats/PlatformStats.tsxis a well-built stats grid with loading skeletonssrc/app/page.tsxuses its own inlineStatCardcomponent instead of PlatformStatsWhy
PlatformStatscomponent or merge the implementationsHow to test
src/app/page.tsxStatCard withsrc/components/PlatformStats/PlatformStats.tsx