forked from SAGNSamnang/admin-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (72 loc) · 2.47 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin-dashboard</title>
<link rel="stylesheet" href="styles/style.css">
<link href="https://cdn.tremor.io/v1/tremor.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/chart.js" defer></script>
</head>
<body>
<div class="dashboard-container">
<aside class="sidebar">
<h2>Admin Dashboard</h2>
<nav>
<ul>
<li><a href="#">Dashboard</a></li>
<li><a href="#">Users</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Logout</a></li>
</ul>
</nav>
</aside>
<main class="main-content">
<header>
<h1>Welcome, Admin</h1>
<img src="https://i.postimg.cc/hP0HLRnx/Manu1-23.jpg" alt="Admin Profile" class="profile-image">
</header>
<section class="cards-container">
<div class="card total-users">
<h3>Total Users</h3>
<p>1,234</p>
</div>
<div class="card sales">
<h3>Sales</h3>
<p>$56,789</p>
</div>
<div class="card new-orders">
<h3>New Orders</h3>
<p>123</p>
</div>
<div class="card feedback">
<h3>Feedback</h3>
<p>234</p>
</div>
</section>
<section class="charts-container">
<div class="chart-card">
<canvas id="salesChart"></canvas>
</div>
<div class="chart-card">
<canvas id="usersChart"></canvas>
</div>
<div class="chart-card">
<canvas id="feedbackChart"></canvas>
</div>
</section>
<section class="info-section">
<h2>Recent Activity</h2>
<ul>
<li>User John Doe purchased a new product.</li>
<li>User Jane Smith updated her profile.</li>
<li>New order received from User Michael Johnson.</li>
</ul>
<img src="https://img.freepik.com/free-vector/infographic-dashboard-element-set_23-2148376930.jpg" alt="Dashboard Graphic" class="info-image">
</section>
<button id="update-button" class="update-button">Update Stats</button>
</main>
</div>
<script src="scripts/script.js"></script>
</body>
</html>