diff --git a/readme.md b/readme.md index 3e6857d6d..8cba50a9e 100644 --- a/readme.md +++ b/readme.md @@ -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) diff --git a/src/components/Roadmaps/RoadmapsPage.tsx b/src/components/Roadmaps/RoadmapsPage.tsx index 5e487a067..6c21ccb5c 100644 --- a/src/components/Roadmaps/RoadmapsPage.tsx +++ b/src/components/Roadmaps/RoadmapsPage.tsx @@ -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', diff --git a/src/pages/get-started.astro b/src/pages/get-started.astro index 9cd7e080d..ad43f5ab0 100644 --- a/src/pages/get-started.astro +++ b/src/pages/get-started.astro @@ -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' }]}