TechBlog: All things software development, tech, or programming.
How to Use React Email in a Next.js Project
February 12, 2025
Likes: 0
Email templates have traditionally been built using HTML and inline styles, which can be tedious and inconsistent across different email...
Practical React UseRef Examples
January 2, 2025
Likes: 2
Here's are some examples of components without useRef, where the lack of useRef causes an issue, followed by a fixed...
Handling Stale State in React with useRef for Dynamic Components
December 27, 2024
Likes: 1
When building React applications, you may encounter situations where state updates don’t seem to take effect in certain callbacks or...
Params in Next.js: From Version 14 to 15
December 2, 2024
Likes: 1
Next.js 15 brings a promise-based approach to optimize server-side rendering, streaming, and parallel data fetching.
Install Shadcn/ui with legacy peer dependencies for Next.js 15
November 3, 2024
Likes: 2
Quick fix for successfully installing Shadcn/ui in Next.js 15 with React 19.
Building a Typing Code Animation Component
October 31, 2024
Likes: 0
This article will guide you through building a typing code animation component in React/Next.js.
Upgrading to Async Promise-Based searchParams in Next.js 15
October 30, 2024
Likes: 0
Next.js 15 introduces several enhancements to improve server-side rendering, parallel data fetching, and integration with React 19.
Building a Full-Stack CRUD Application with Next.js 15 and Supabase Authentication
October 29, 2024
Likes: 3
Next.js 15 brings new enhancements, including Promise-based `searchParams`, improved server performance, and a seamless integration with React 19.
Next.js: Understanding Route Groups
October 11, 2024
Likes: 0
One powerful feature that aids in organizing and structuring our apps is Route Groups.
Next.js: Guide to Error Handling in Next.js
October 5, 2024
Likes: 0
In web development, handling errors can take different forms, from displaying user-friendly messages for validation errors to using more advanced...