-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashboard.html
More file actions
215 lines (209 loc) · 6.65 KB
/
dashboard.html
File metadata and controls
215 lines (209 loc) · 6.65 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard - BlackRoad OS</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0f172a;
color: #e2e8f0;
}
.header {
background: #1e293b;
padding: 20px 40px;
border-bottom: 1px solid #334155;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 800;
color: #10b981;
}
.user-menu {
display: flex;
gap: 20px;
align-items: center;
}
.badge {
background: linear-gradient(135deg, #f59e0b, #ef4444);
padding: 6px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 40px;
}
.welcome {
margin-bottom: 40px;
}
.welcome h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.card {
background: #1e293b;
padding: 30px;
border-radius: 15px;
border: 1px solid #334155;
transition: transform 0.2s;
}
.card:hover {
transform: translateY(-5px);
border-color: #10b981;
}
.card h3 {
font-size: 1.3rem;
margin-bottom: 15px;
color: #10b981;
}
.stat {
font-size: 2.5rem;
font-weight: 800;
color: #10b981;
margin: 10px 0;
}
.button {
background: #10b981;
color: white;
border: none;
padding: 15px 30px;
font-size: 1rem;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
transition: background 0.2s;
width: 100%;
margin-top: 15px;
}
.button:hover {
background: #059669;
}
.secondary {
background: #334155;
}
.secondary:hover {
background: #475569;
}
.quick-actions {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.action-card {
background: linear-gradient(135deg, #667eea, #764ba2);
padding: 20px;
border-radius: 10px;
text-align: center;
cursor: pointer;
transition: transform 0.2s;
}
.action-card:hover {
transform: scale(1.05);
}
.action-card .icon {
font-size: 2.5rem;
margin-bottom: 10px;
}
.recent-activity {
margin-top: 40px;
}
.activity-item {
background: #1e293b;
padding: 20px;
border-radius: 10px;
border-left: 4px solid #10b981;
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="header">
<div class="logo">BlackRoad OS</div>
<div class="user-menu">
<span class="badge">🏆 FOUNDING MEMBER</span>
<span>Alexa</span>
<button class="button secondary" style="padding: 10px 20px; width: auto; margin: 0;">Settings</button>
</div>
</div>
<div class="container">
<div class="welcome">
<h1>Welcome back, Alexa! 👋</h1>
<p style="opacity: 0.7;">Here's what's happening with your BlackRoad OS workspace</p>
</div>
<div class="grid">
<div class="card">
<h3>📊 Total Deployments</h3>
<div class="stat">0</div>
<p style="opacity: 0.7;">Deploy your first project to get started</p>
<button class="button">Deploy Now</button>
</div>
<div class="card">
<h3>🤖 AI Workflows</h3>
<div class="stat">0</div>
<p style="opacity: 0.7;">No workflows created yet</p>
<button class="button">Create Workflow</button>
</div>
<div class="card">
<h3>⚡ API Calls Today</h3>
<div class="stat">0</div>
<p style="opacity: 0.7;">Unlimited API calls on your plan</p>
<button class="button secondary">View Docs</button>
</div>
</div>
<h2 style="margin-bottom: 20px;">Quick Actions</h2>
<div class="quick-actions">
<div class="action-card">
<div class="icon">🚀</div>
<div>Deploy Project</div>
</div>
<div class="action-card">
<div class="icon">🤖</div>
<div>Create AI Agent</div>
</div>
<div class="action-card">
<div class="icon">📊</div>
<div>View Analytics</div>
</div>
<div class="action-card">
<div class="icon">👥</div>
<div>Invite Team</div>
</div>
<div class="action-card">
<div class="icon">📚</div>
<div>Documentation</div>
</div>
<div class="action-card">
<div class="icon">💬</div>
<div>Get Support</div>
</div>
</div>
<div class="recent-activity">
<h2 style="margin-bottom: 20px;">Recent Activity</h2>
<div class="activity-item">
<strong>🎉 Account created</strong><br>
<span style="opacity: 0.7;">Welcome to BlackRoad OS! Your 14-day free trial has started.</span><br>
<span style="opacity: 0.5; font-size: 0.9rem;">Just now</span>
</div>
<div class="activity-item">
<strong>🏆 Founding Member status activated</strong><br>
<span style="opacity: 0.7;">You've been granted Founding Member benefits including 50% off for life.</span><br>
<span style="opacity: 0.5; font-size: 0.9rem;">Just now</span>
</div>
</div>
</div>
</body>
</html>