building-nextjs-apps

Installation
SKILL.md

Next.js 16 Applications

Build Next.js 16 applications correctly with distinctive design.

Critical Breaking Changes (Next.js 16)

1. params and searchParams are Now Promises

THIS IS THE MOST COMMON MISTAKE.

// WRONG - Next.js 15 pattern (WILL FAIL)
export default function Page({ params }: { params: { id: string } }) {
  return <div>ID: {params.id}</div>
}
Installs
1
GitHub Stars
379
First Seen
Mar 4, 2026
building-nextjs-apps — aiskillstore/marketplace