-
Notifications
You must be signed in to change notification settings - Fork 0
/
NavBar.js
32 lines (29 loc) · 862 Bytes
/
NavBar.js
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
import earth from './images/FINAL_LOGOJPG-removebg-preview.png';
function NavBar() {
return (
<div >
<nav className="nav">
<a href="/" className="sitetitle">
<p className='Title'>Trusted Sphere</p>
</a>
<img className='earthimage' src={earth} height={110} width={105}/>
</nav>
<ul>
<li>
<a href="/formcommunity">Register Community</a>
</li>
<li>
<a href="/formuser">Register User</a>
</li>
<li>
<a href="/dashboardcommunity">Dashboard Community</a>
</li>
<li>
<a href="/dashboarduser">Dashboard User</a>
</li>
</ul>
<button className='ConnectWalletButtonNav'> Connect Metamask</button>
</div>
);
}
export default NavBar;