-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavBar.jsx
More file actions
75 lines (64 loc) · 2.13 KB
/
Copy pathNavBar.jsx
File metadata and controls
75 lines (64 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React from "react";
import logo from "../assets/logo.jpg";
import { Link } from "react-router-dom";
import "../Css/NavBar.css";
const NavBar = () => {
return (
<div>
<aside className="sidebar">
<div className="logo">
<img src={logo} alt="logo" />
<h2>HealthTrackr</h2>
</div>
<ul className="links">
<h4>Account</h4>
<li>
<span className="material-symbols-outlined">person</span>
<Link to="/profile">Profile</Link>
</li>
<li>
<span className="material-symbols-outlined">settings</span>
<Link to="/settings">Settings</Link>
</li>
<h4>Main Menu</h4>
<li>
<span className="material-symbols-outlined">flag</span>
<Link to="/prescription">Prescription</Link>
</li>
<li>
<span className="material-symbols-outlined">ambient_screen</span>
<Link to="/LabReports">Lab Reports</Link>
</li>
<li>
<span className="material-symbols-outlined">dashboard</span>
<Link to="/appoinments">Appointments</Link>
</li>
<hr />
<h4>Advanced</h4>
<li>
<span className="material-symbols-outlined">group</span>
<Link to="/people">People</Link>
</li>
<li>
<span className="material-symbols-outlined">mail</span>
<Link to="/messagecomponent">Message</Link>
</li>
<li>
<span className="material-symbols-outlined">pacemaker</span>
<a href="/test">Test</a>
</li>
<li>
<span className="material-symbols-outlined">monitoring</span>
<Link to="/analytic">Analytic</Link>
</li>
<hr />
<li className="logout-link">
<span className="material-symbols-outlined">logout</span>
<Link to="/login">Logout</Link>
</li>
</ul>
</aside>
</div>
);
};
export default NavBar;