Skip to content

Commit

Permalink
Merge pull request #1108 from EkalavyanS/old-dev
Browse files Browse the repository at this point in the history
create(): Created Roadmap Page
  • Loading branch information
Jenin82 authored May 1, 2024
2 parents e90adce + d39d281 commit 0d45d00
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 14 deletions.
3 changes: 2 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -116,13 +117,13 @@ function App() {
<Route path="/community-partners" element={<CommunityPartner />} />
<Route path="/artofteaching" element={<ArtOfTeaching />} />
<Route path="/wikisyllabus" element={<WikiSyllabus />} />
<Route path="/roadmap" element={<Roadmap />} />
<Route path="/yip" element={<YIP2023 />} />
<Route path="/events/bewebdev" element={<BeWebDev />} />
<Route path="events/gta/codestorm" element={<CodeStorm />} />
<Route path="events/learningfest" element={<KKEMLearningFest />} />
<Route path="/keralatechfest" element={<KKEMLearningFest />} />
<Route path="/maveliportfolio" element={<MaveliPortfolio />} />

<Route path="/team">
<Route path="" element={<Teams />} />
</Route>
Expand Down
36 changes: 24 additions & 12 deletions src/Components/Navbar/Mylinks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -133,8 +140,6 @@ export const links = [
foreign: false,
},
],


},
],
},
Expand Down Expand Up @@ -190,14 +195,7 @@ export const links = [
link: "https://launchpadkerala.org/",
foreign: true,
},
{
name: "in50hours",
submenu: false,
sublinks: [],
link: "/in50hours",
foreign: false,
}

,
],
},
{
Expand Down Expand Up @@ -568,7 +566,7 @@ export const links = [
submenu: false,
sublinks: [],
foreign: true,
}
},
],
},
{
Expand All @@ -582,7 +580,7 @@ export const links = [
submenu: false,
sublinks: [],
foreign: false,
}
},
],
},
],
Expand Down Expand Up @@ -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,
}
],
},
{
Expand Down
3 changes: 2 additions & 1 deletion src/Pages/Events/BuildForTeam/BuildForTeam.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ const Build4Team = () => {
Join Whatsapp Group
</button>
</a>
</div> */}
</div>
*/}
</div>
<img
src="/assets/events/build4team/fvimgr.gif"
Expand Down
18 changes: 18 additions & 0 deletions src/Pages/Roadmap/Roadmap.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import React from "react";
import Navbar from "../../Components/Navbar/Navbar";

function Roadmap() {
return (
<div>
<Navbar />
<iframe
src="https://roadmap.sh/r/embed?id=662f482233b0bd83e7382e2a"
width="100%"
height="500px"
frameBorder="0"
></iframe>
</div>
);
}

export default Roadmap;

0 comments on commit 0d45d00

Please sign in to comment.