-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharge-shop.html
More file actions
78 lines (77 loc) · 2.88 KB
/
charge-shop.html
File metadata and controls
78 lines (77 loc) · 2.88 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
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Charge Shop - NeuroDev</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
.dev-container {
max-width: 600px;
margin: 0 auto;
padding: 2rem;
margin-top: 120px;
text-align: center;
}
.dev-card {
background: linear-gradient(135deg, #1e2a47, #2a3f5f);
border: 2px solid #f39c12;
border-radius: 20px;
padding: 3rem 2rem;
}
.dev-icon { font-size: 5rem; color: #f39c12; margin-bottom: 1.5rem; }
.dev-title { font-size: 2rem; color: #ffffff; margin-bottom: 1rem; }
.dev-subtitle { color: #8892b0; font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }
.back-btn {
display: inline-block;
background: linear-gradient(135deg, #f39c12, #e67e22);
color: #ffffff;
padding: 0.9rem 2rem;
border-radius: 12px;
text-decoration: none;
font-weight: bold;
font-size: 1rem;
transition: transform 0.2s;
}
.back-btn:hover { transform: translateY(-2px); }
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-brand">
<i class="fas fa-brain"></i>
<span>NeuroDev</span>
</div>
<ul class="nav-links">
<li><a href="index.html">Dashboard</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="interactive-games.html">Interactive Games</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="dictionary.html">Dictionary</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="profile.html">Profile</a></li>
</ul>
<div class="nav-user">
<div class="user-icon" onclick="window.location.href='profile.html'">
<i class="fas fa-user"></i>
</div>
</div>
</div>
</nav>
<div class="dev-container">
<div class="dev-card">
<div class="dev-icon"><i class="fas fa-tools"></i></div>
<h1 class="dev-title">Under Development</h1>
<p class="dev-subtitle">
The Charge Shop is currently being built.<br>
We're working hard to bring you an amazing experience. Check back soon!
</p>
<a href="index.html" class="back-btn">
<i class="fas fa-arrow-left"></i> Back to Dashboard
</a>
</div>
</div>
</body>
</html>