Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
JarUml committed Nov 30, 2023
1 parent b982c27 commit 6e0bc7e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Frontend/algoverse/src/components/SearchBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
align-items: center;
margin-top: auto;
margin-bottom: auto;
margin-left: 5%;
}

.search-input{
Expand Down
4 changes: 3 additions & 1 deletion Frontend/algoverse/src/components/SearchBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import { useNavigate } from "react-router-dom";
const pages = [
{ name: "Mainpage", path: "/" },
{ name: "Dijkstra", path: "/pathfinding?algorithm=Dijkstra" },
{ name: "pathfinding", path: "/pathfinding" },
{ name: "BFS", path: "/pathfinding?algorithm=BFS" },
{ name: "DFS", path: "/pathfinding?algorithm=DFS" },
{ name: "A*", path: "/pathfinding?algorithm=AStar" },
// other pages
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function Applications() {
{applicationsText.map((step, index) => (
<p key={index}>{step}</p>
))}
<h1>Big O Notation</h1>
<h1>Computational Complexity in O Notation</h1>
<p>{bigOText}</p>
</div>
</>
Expand Down

0 comments on commit 6e0bc7e

Please sign in to comment.