Browsing Tag
frontend
212 posts
The Best Web Apps Feel Like Conversations
The best web applications do not feel like software. They feel like conversations. You open the app, interact…
Building an Accessible Toast Notification System in React
Toast notifications are often implemented as simple UI feedback components, but making them accessible requires additional considerations. In…
How to Create a Digital Portfolio That Visually Pops
Job searching can be tough, and so is standing out among the competition. When putting together job applications,…
Modern JavaScript Essentials: From Basics to Asynchronous Programming
In an AI-driven world, a strong foundation in core technologies is essential. To keep my skills sharp, I’m…
🧑💻 Alt Text vs ARIA Labels — What Developers Often Miss
Most developers know the basics of Alt Text for images. But when building modern apps with complex UI,…
how to add Progressive Blur Effects in React / Next.js with react-progressive-blur
Installation: npm install react-progressive-blur or yarn add react-progressive-blur or bun add react-progressive-blur When building modern web apps, subtle…
How to Use React Query with React Router Loaders (Pre-fetch & Cache Data)
The Problem When you navigate to a page, there’s usually a delay while data is being fetched. The…
Fix: Eliminating Double Async Validation in TanStack Form & Zod
A practical pattern to prevent duplicate API calls and race conditions in complex React forms. When building production-grade…
From Vision to Interaction: A Workplace Dashboard That Works
As part of a hands-on challenge, I built a fully interactive, responsive company dashboard from scratch. Designed for…
Provider-Agnostic Chat in React: WebLLM Local Mode + Remote Fallback
Intro Most LLM apps have the same shape. Ship text to a server, pay per token, and pray…