nextjs

Installation
SKILL.md

Critical Patterns

Server Components (DEFAULT)

// ✅ ALWAYS: Server Components by default (no 'use client')
async function UserProfile({ userId }: { userId: string }) {
  const user = await db.user.findUnique({ where: { id: userId } });
  
  return (
    <div>
      <h1>{user.name}</h1>
      <p>{user.email}</p>
    </div>
  );
}

Client Components (WHEN NEEDED)

Related skills
Installs
6
GitHub Stars
1
First Seen
Jan 26, 2026