Build a Social Feed with Reactions
Build a social media-style feed with posts, reactions, comments, and infinite scroll.
Requirements
Create posts with text and optional imageInfinite scroll feed (newest first, load more on scroll)Reaction system: like, love, laugh, wow, sad (emoji reactions)Reaction count display with breakdown on hoverComment system: add comments on posts, see comment countUser avatars and display namesRelative timestamps ("2 hours ago", "yesterday")Optimistic UI updates for reactionsTechnical Notes
Use Next.js API routes with database. Infinite scroll using IntersectionObserver. Optimistic updates: show reaction immediately, revert on error.
Bonus Points
Image upload to cloud storageReal-time updates (new posts appear without refresh)Share/repost functionality