Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import MindMapEditor from "./pages/MindMapEditor";
import Profile from "./pages/Profile.js";
import SubmitFeedback from "./pages/SubmitFeedback";
import Todo from "./pages/Todo";
import HelpCenter from "./pages/HelpCenter";


const App = () => {
Expand All @@ -44,6 +45,7 @@ const App = () => {
<Route path="/contact" element={<Contact />} />
<Route path="/profile" element={<Profile />} />
<Route path="/feedback/submit" element={<SubmitFeedback />} />
<Route path="/help" element={<HelpCenter />} />
</Routes>
</div>
</Router>
Expand Down
11 changes: 6 additions & 5 deletions client/src/components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ const primaryLinks = [

// Secondary links hidden inside "More" dropdown
const moreLinks = [
{ to: "/about", label: "About Us" },
{ to: "/analytics", label: "Analytics" },
{ to: "/tasks", label: "Tasks" },
{ to: "/mindmap", label: "Mind Map" },
{ to: "/faq", label: "FAQs" },
{ to: "/about", label: "About Us" },
{ to: "/analytics", label: "Analytics" },
{ to: "/tasks", label: "Tasks" },
{ to: "/mindmap", label: "Mind Map" },
{ to: "/faq", label: "FAQs" },
{ to: "/help", label: "Help Center" },
];

// All links for mobile menu
Expand Down
Loading