-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
71 lines (71 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Oeconomia Dashboard</title>
<link rel="icon" type="image/png" href="https://pub-37d61a7eb7ae45898b46702664710cb2.r2.dev/Eloqura.png" />
<link rel="apple-touch-icon" href="https://pub-37d61a7eb7ae45898b46702664710cb2.r2.dev/Eloqura.png" />
<style>
body {
margin: 0;
padding: 40px;
background: linear-gradient(135deg, #1a1b2e, #16213e);
color: white;
font-family: system-ui, -apple-system, sans-serif;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
h1 {
background: linear-gradient(45deg, #00d4ff, #ff00ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-size: 3rem;
margin-bottom: 1rem;
}
.status {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 12px;
margin: 20px 0;
}
.button {
background: linear-gradient(45deg, #00d4ff, #ff00ff);
color: white;
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
text-decoration: none;
display: inline-block;
margin: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Oeconomia Dashboard</h1>
<div class="status">
<h2>🚀 Domain Connected Successfully!</h2>
<p>Your custom domain <strong>oeconomia.io</strong> is now active.</p>
<p>The React application deployment is being optimized.</p>
<br>
<p><strong>Coming Soon:</strong></p>
<ul style="text-align: left; max-width: 500px; margin: 0 auto;">
<li>Real-time OEC token tracking</li>
<li>Portfolio management with DeFi positions</li>
<li>Staking interface with ROI calculator</li>
<li>Governance voting system</li>
<li>Learning platform with achievements</li>
</ul>
</div>
<a href="https://github.com/Oeconomia2025/oeconomia-dashboard" class="button">View Source Code</a>
</div>
</body>
</html>