I have a page displaying a list of bloggers. Each card contains:
I'm trying to decide between two approaches:
1) Pagination: show 20 cards per page with page navigation
2) Infinite scroll: load more cards as the user scrolls down
My main concerns:
What would you recommend and why?
- Name
- Bio
- Social media links
- Iframe video (lazy-loaded)
I'm trying to decide between two approaches:
1) Pagination: show 20 cards per page with page navigation
2) Infinite scroll: load more cards as the user scrolls down
My main concerns:
- SEO: Which approach is better for search engine indexing?
- Performance: Given the iframe videos (even with lazy loading), which option handles better?
- UX: Any considerations I might be missing?
What would you recommend and why?