building-nextjs-apps
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>
}