Oliver Wolfson
ServicesProjectsContact

Development Services

SaaS apps · AI systems · MVP builds · Technical consulting

Services·Blog
© 2025 Oliver Wolfson. All rights reserved.

Blog

Articles, tutorials, and insights about web development and technology.

Search Posts
Find articles by title, description, author, tags, or categories.

Found 71 posts matching "Next.js"

How to Create a Super Minimal Progressive Web App (PWA) with Next.js 15
Progressive Web Apps offer app-like experiences directly in the browser: installable, offline-capable, and fast. With Next.js 15 and its App Router, y...
June 30, 2025•O. Wolfson•
Web Development
Building a Dynamic Form System with Configuration-Driven Design in Next.js
Creating flexible, extensible forms in a web application can become tedious if each one must be hardcoded. In our project, we’ve tackled this by imple...
June 1, 2025•O. Wolfson•
Web Development
How to Use Custom Fonts in a Next.js 15 + Tailwind 4 App
Tailwind CSS v4 introduces a more design-token–oriented approach to theming, which can eliminate the need for a traditional tailwind.config.ts. If you...
May 30, 2025•O. Wolfson•
Web DevelopmentDesign
Server Components vs Server Actions for Data Fetching and Auth in Next.js 15
With the introduction of React Server Components (RSC) and Server Actions in Next.js 14+, and now formalized in Next.js 15, the way we handle data fet...
May 24, 2025•O. Wolfson•
Web DevelopmentTechnologyProgramming
Caching in Next.js 15 – A Developer's Guide
Here's a full step-by-step tutorial on caching in Next.js 15, including usage, benefits, best practices, and real examples. We'll start from scratch a...
May 23, 2025•O. Wolfson•
Web Development
A Random Hero Title Font Selector Component in Next.js
A random typeface selector for our hero title
April 13, 2025•O. Wolfson•
Web DevelopmentDesign
Create a Multi-Select Component Using ShadCN in Next.js
Multi-select dropdowns are crucial for user-friendly forms, allowing users to pick multiple options efficiently.
March 7, 2025•O. Wolfson•
Web DevelopmentProductivity
How to Install and Use Local Fonts in Next.js 15
This guide explains how to install and use local fonts in a Next.js 15 project
March 4, 2025•O. Wolfson•
Web DevelopmentTypographyDesign
Optimized CustomImage Component for Next.js
When working with images in a Next.js project, using the built-in next/image component is the recommended approach for optimized loading, automatic re...
March 3, 2025•O. Wolfson•
Web Development
Understanding Dynamic Routes in Next.js 15: Async Params and Search Params
Next.js 15 introduces several updates to its App Router, particularly in how dynamic routes handle parameters. One of the most notable changes is that...
March 2, 2025•O. Wolfson•
Web DevelopmentProgrammingTechnology