nextjs-skillslisted
Install: claude install-skill murtazatouqeer/f5-framework-claude
# Next.js Skills
React framework for production with hybrid static & server rendering.
## Sub-Skills
### Architecture
- [app-router.md](architecture/app-router.md) - App Router patterns
- [pages-router.md](architecture/pages-router.md) - Pages Router patterns
- [project-structure.md](architecture/project-structure.md) - Project organization
### Rendering
- [server-components.md](rendering/server-components.md) - Server Components
- [client-components.md](rendering/client-components.md) - Client Components
- [ssr.md](rendering/ssr.md) - Server-side rendering
- [ssg.md](rendering/ssg.md) - Static generation
- [isr.md](rendering/isr.md) - Incremental Static Regeneration
### Data Fetching
- [server-actions.md](data-fetching/server-actions.md) - Server Actions
- [fetch-api.md](data-fetching/fetch-api.md) - Fetch patterns
- [caching.md](data-fetching/caching.md) - Caching strategies
### Routing
- [dynamic-routes.md](routing/dynamic-routes.md) - Dynamic routes
- [route-handlers.md](routing/route-handlers.md) - API routes
- [middleware.md](routing/middleware.md) - Middleware patterns
- [layouts.md](routing/layouts.md) - Layout patterns
### Performance
- [image-optimization.md](performance/image-optimization.md) - next/image
- [font-optimization.md](performance/font-optimization.md) - next/font
- [bundle-analysis.md](performance/bundle-analysis.md) - Bundle optimization
### Authentication
- [next-auth.md](authentication/next-auth.md) - NextAuth.js
- [middleware-auth.md](authen