-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
171 lines (148 loc) · 5.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shoble - Developing the Future of Web3</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
color: #333;
}
header {
background: linear-gradient(to right, #ff7e5f, #feb47b);
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin: 10px 0;
}
header p {
font-size: 1.2rem;
}
.banner {
background-color: #ff7e5f;
color: white;
padding: 10px;
text-align: center;
font-size: 1.2rem;
font-weight: bold;
}
.content {
padding: 20px;
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.content h2 {
font-size: 2rem;
margin-bottom: 20px;
}
.content p {
font-size: 1.1rem;
margin-bottom: 20px;
}
.cta {
background: linear-gradient(to right, #43cea2, #185a9d);
color: white;
padding: 15px 25px;
text-decoration: none;
font-size: 1.2rem;
border-radius: 5px;
display: inline-block;
margin-top: 20px;
transition: background 0.3s ease;
}
.cta:hover {
background: linear-gradient(to right, #185a9d, #43cea2);
}
.tokenomics {
background: #f9f9f9;
padding: 30px;
margin-top: 40px;
border-radius: 8px;
}
.tokenomics img {
max-width: 150px;
margin: 10px auto;
display: block;
}
.tokenomics h3 {
font-size: 1.8rem;
margin-bottom: 15px;
}
footer {
margin-top: 40px;
padding: 10px 0;
background: #f4f4f4;
text-align: center;
font-size: 0.9rem;
color: #555;
}
footer a {
color: #ff7e5f;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #feb47b;
}
.social {
margin-top: 20px;
}
.social a {
text-decoration: none;
color: #1DA1F2;
font-size: 1.2rem;
transition: color 0.3s ease;
}
.social a:hover {
color: #0d8ddf;
}
</style>
</head>
<body>
<header>
<h1>Shoble</h1>
<p>Developing the Future of Web3</p>
</header>
<div class="banner">
<p><strong>The $LUX Presale is LIVE from 22/12/2024 to 31/12/2024. Don't miss out! Access the presale via the Telegram bot: <a href="https://t.me/LuminaPresaleBot" style="color: white; text-decoration: underline;">t.me/LuminaPresaleBot</a></strong></p>
</div>
<main class="content">
<h2>Introducing Lumina</h2>
<p>Lumina is a revolutionary new coin on the exceptionally innovational TON Network. Designed for the future, Lumina embodies the spirit of decentralization and progress, lighting the way for a brighter, connected world.</p>
<a href="https://tonscan.org/jetton/EQC--NQkvdHOBUdIjlgwIOP_Lf-cAMFC0tnYWJhJGnRYfE-C#transactions" class="cta">View on TonScan</a>
<section class="tokenomics">
<h3>Tokenomics</h3>
<p>With a max supply of 3,141,592,653 tokens, Lumina is designed to be both abundant and sustainable. Here’s the breakdown:</p>
<ul style="text-align: left; margin: 20px auto; max-width: 600px;">
<li><strong>20%:</strong> Founders & Development</li>
<li><strong>25%:</strong> Community Incentives</li>
<li><strong>20%:</strong> Liquidity Provision</li>
<li><strong>15%:</strong> Ecosystem Growth</li>
<li><strong>10%:</strong> Marketing</li>
<li><strong>10%:</strong> Reserve Fund</li>
</ul>
<p>Lumina launches on <strong>DeDust.io</strong> on <strong>January 1st, 2025</strong>. Be part of this exciting journey and start trading on day one!</p>
<img src="Logo.png" alt="Lumina Coin Logo">
</section>
</main>
<footer>
<p>© 2024 Shoble. Built with passion for the future of Web3. <a href="https://github.com">View on GitHub</a></p>
<div class="social">
<p>Follow us on <a href="https://x.com/LuminaCoin_TON">X</a>!</p>
<p>Need help? Join our <a href="https://t.me/+RG3Gnm4TKq41ZTE1" style="color: #0088cc; text-decoration: underline;">Telegram Group</a>.</p>
</div>
</footer>
</body>
</html>