en un clic
app-router
Next.js App Router - Server components, layouts, routing patterns
Menu
Next.js App Router - Server components, layouts, routing patterns
Next.js API Routes - Route handlers, middleware, edge runtime
Next.js data fetching - Server actions, caching, revalidation
Next.js deployment - Vercel, Docker, self-hosting strategies
Master system design, architecture patterns, algorithms, data structures, and computer science fundamentals for building scalable systems.
Master Node.js, Express, PHP, Laravel, Java, Spring Boot, API design, and database integration. Build scalable APIs and server applications.
Master machine learning, data engineering, AI engineering, LLMs, prompt engineering, and MLOps. Build intelligent systems with Python.
| name | app-router |
| description | Next.js App Router - Server components, layouts, routing patterns |
| sasmp_version | 1.3.0 |
| bonded_agent | nextjs-expert |
| bond_type | PRIMARY_BOND |
Master Next.js 14+ App Router with server components, layouts, and modern routing patterns.
// app/layout.tsx
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}
// app/dashboard/page.tsx
export default async function DashboardPage() {
const data = await fetchData() // Server-side
return <Dashboard data={data} />
}