1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

Add nextjs roadmap

This commit is contained in:
Kamran Ahmed
2025-08-27 03:10:03 +01:00
parent a15b13cedd
commit 449e8f12e4
3 changed files with 8 additions and 0 deletions

View File

@@ -62,6 +62,7 @@ Here is the list of available roadmaps with more being actively worked upon.
- [TypeScript Roadmap](https://roadmap.sh/typescript)
- [C++ Roadmap](https://roadmap.sh/cpp)
- [React Roadmap](https://roadmap.sh/react)
- [Next.js Roadmap](https://roadmap.sh/nextjs)
- [React Native Roadmap](https://roadmap.sh/react-native)
- [Vue Roadmap](https://roadmap.sh/vue)
- [Angular Roadmap](https://roadmap.sh/angular)

View File

@@ -151,6 +151,12 @@ const groups: GroupType[] = [
type: 'skill',
otherGroups: ['Web Development'],
},
{
title: 'Next.js',
link: '/nextjs',
type: 'skill',
otherGroups: ['Web Development'],
},
{
title: 'Spring Boot',
link: '/spring-boot',

View File

@@ -225,6 +225,7 @@ import BaseLayout from '../layouts/BaseLayout.astro';
{ title: 'React', link: '/react' },
{ title: 'Vue', link: '/vue' },
{ title: 'Angular', link: '/angular' },
{ title: 'Next.js', link: '/nextjs' },
]}
description='Or learn a framework?'
secondaryRoadmaps={[{ title: 'Design Systems', link: '/design-system' }]}