From d39d28179b32d9f91be1e4c98ba516bda80977ae Mon Sep 17 00:00:00 2001 From: EkalavyanS Date: Tue, 30 Apr 2024 16:35:29 +0530 Subject: [PATCH] create(): Created Roadmap Page --- src/App.js | 3 +- src/Components/Navbar/Mylinks.jsx | 36 ++++++++++++------- .../Events/BuildForTeam/BuildForTeam.jsx | 3 +- src/Pages/Roadmap/Roadmap.jsx | 18 ++++++++++ 4 files changed, 46 insertions(+), 14 deletions(-) create mode 100644 src/Pages/Roadmap/Roadmap.jsx diff --git a/src/App.js b/src/App.js index 84c03e7c7..2a1e5a1f3 100644 --- a/src/App.js +++ b/src/App.js @@ -14,6 +14,7 @@ import Career from "./Pages/Career/Career"; import LeaderBoard from "./Pages/LeaderBoard/leaderBoard"; import WikiSyllabus from "./Pages/WikiSyllabus/WikiSyllabus"; import HacktoberFest from "./Pages/Events/HacktoberFest/HacktoberFest"; +import Roadmap from "./Pages/Roadmap/Roadmap"; // import Yip from "./Pages/YIP/Yip"; import CampusChapters from "./Pages/CampusChapters/CampusChapters"; import BlogLanding from "./Pages/CampusChapters/Blogs/BlogLanding"; @@ -116,13 +117,13 @@ function App() { } /> } /> } /> + } /> } /> } /> } /> } /> } /> } /> - } /> diff --git a/src/Components/Navbar/Mylinks.jsx b/src/Components/Navbar/Mylinks.jsx index c35a25576..a8056ada8 100644 --- a/src/Components/Navbar/Mylinks.jsx +++ b/src/Components/Navbar/Mylinks.jsx @@ -118,6 +118,13 @@ export const links = [ name: "Others", submenu: true, sublinks: [ + { + name: "Roadmaps", + submenu: false, + sublinks: [], + link: "/roadmap", + foreign: false, + }, { name: "Magazine", submenu: false, @@ -133,8 +140,6 @@ export const links = [ foreign: false, }, ], - - }, ], }, @@ -190,14 +195,7 @@ export const links = [ link: "https://launchpadkerala.org/", foreign: true, }, - { - name: "in50hours", - submenu: false, - sublinks: [], - link: "/in50hours", - foreign: false, - } - + , ], }, { @@ -568,7 +566,7 @@ export const links = [ submenu: false, sublinks: [], foreign: true, - } + }, ], }, { @@ -582,7 +580,7 @@ export const links = [ submenu: false, sublinks: [], foreign: false, - } + }, ], }, ], @@ -732,6 +730,20 @@ export function getLinks(ig = []) { link: "/artofteaching", foreign: false, }, + { + name: "Top100 Coders", + submenu: false, + sublinks: [], + link: "https://top100coders.com/", + foreign: true, + }, + { + name: "IEEE Launchpad", + submenu: false, + sublinks: [], + link: "https://launchpadkerala.org/", + foreign: true, + } ], }, { diff --git a/src/Pages/Events/BuildForTeam/BuildForTeam.jsx b/src/Pages/Events/BuildForTeam/BuildForTeam.jsx index 54aa9fa46..e445b72b4 100644 --- a/src/Pages/Events/BuildForTeam/BuildForTeam.jsx +++ b/src/Pages/Events/BuildForTeam/BuildForTeam.jsx @@ -56,7 +56,8 @@ const Build4Team = () => { Join Whatsapp Group - */} + + */} + + + + ); +} + +export default Roadmap;