-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.09 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>SOuL Sanctuary</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
</head>
<body>
<nav>
<div class="nav-left">
<img src="assets/logo.png" alt="SOuL Sanctuary" class="nav-logo">
<span>SOuL Sanctuary</span>
</div>
<div class="nav-center">
<a href="#" class="nav-item">Dashboard</a>
<a href="#" class="nav-item">Collectors</a>
<a href="#" class="nav-item">Community</a>
<a href="#" class="nav-item">Marketplace</a>
<a href="#" class="nav-item">Game</a>
<a href="#" class="nav-item">GeoMedia</a>
<a href="/app/soulmate" class="nav-item">SOuLmate</a>
</div>
<div class="nav-right">
<button class="disconnect-wallet">Disconnect (nestjs...rxjs)</button>
</div>
</nav>
<div id="map"></div>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="script.js"></script>
</body>
</html>