Describe the bug
On desktop view, the stats section (50+ Contributors, 25+ Projects, etc.) appears stacked vertically instead of horizontally aligned. This reduces visual clarity and symmetry.
Expected behavior
Stats should appear in one row (four columns) on desktop, two on tablet, and stacked only on mobile.
Proposed fix
Replace the existing vertical flex layout with a responsive Tailwind grid using grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 for proper alignment.
Files changed
Testing steps
- Run
npm run dev
- Open site on desktop (>=1024px width)
- Confirm stats appear side-by-side horizontally
Describe the bug
On desktop view, the stats section (50+ Contributors, 25+ Projects, etc.) appears stacked vertically instead of horizontally aligned. This reduces visual clarity and symmetry.
Expected behavior
Stats should appear in one row (four columns) on desktop, two on tablet, and stacked only on mobile.
Proposed fix
Replace the existing vertical flex layout with a responsive Tailwind grid using
grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4for proper alignment.Files changed
Testing steps
npm run dev