Skip to main content

6 posts tagged with "Scalability"

Strategies and patterns for building highly scalable applications.

View All Tags

Introduction to Tailwind CSS

· 4 min read
Deepak Kamboj
Senior Software Engineer

Tailwind CSS is a utility-first CSS framework packed with classes like flex, pt-4, text-center, and rotate-90 that can be composed to build any design, directly in your markup.

Key Features:

  • Utility-First: Build custom designs without writing CSS.
  • Responsive Design: Mobile-first approach with responsive utilities.
  • Customization: Easily customize your design system with Tailwind's configuration file.
  • Performance: Tailwind removes unused CSS in production, optimizing load times.

Implementing Redux in React vs NextJS

· 5 min read
Deepak Kamboj
Senior Software Engineer

In React, Redux is commonly used for global state management, often integrated using middleware like Redux Saga or Thunk. When transitioning to Next.js, Redux works similarly, but you’ll need to consider how Next.js handles server-side rendering (SSR) and static site generation (SSG). This guide compares Redux implementation in React and Next.js and explores how to handle SSR and persistent stores in Next.js.