Spaces:
Running
Running
please use this logo that is in the folder of this project: bonderLOGONEWPURPLE.png - Follow Up Deployment
Browse files- index.html +89 -744
index.html
CHANGED
|
@@ -1,756 +1,101 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
-
<script>
|
| 10 |
-
tailwind.config = {
|
| 11 |
-
theme: {
|
| 12 |
-
extend: {
|
| 13 |
-
colors: {
|
| 14 |
-
primary: '#6366f1',
|
| 15 |
-
secondary: '#8b5cf6',
|
| 16 |
-
dark: '#0f172a',
|
| 17 |
-
light: '#f8fafc'
|
| 18 |
-
}
|
| 19 |
-
}
|
| 20 |
-
}
|
| 21 |
-
}
|
| 22 |
-
</script>
|
| 23 |
-
<style>
|
| 24 |
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
|
| 25 |
-
|
| 26 |
-
body {
|
| 27 |
-
font-family: 'Inter', sans-serif;
|
| 28 |
-
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
|
| 29 |
-
color: #f8fafc;
|
| 30 |
-
}
|
| 31 |
-
|
| 32 |
-
.gradient-border {
|
| 33 |
-
background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
|
| 34 |
-
padding: 2px;
|
| 35 |
-
border-radius: 12px;
|
| 36 |
-
}
|
| 37 |
-
|
| 38 |
-
.card {
|
| 39 |
-
background: rgba(30, 41, 59, 0.7);
|
| 40 |
-
backdrop-filter: blur(10px);
|
| 41 |
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
| 42 |
-
border-radius: 12px;
|
| 43 |
-
transition: all 0.3s ease;
|
| 44 |
-
}
|
| 45 |
-
|
| 46 |
-
.card:hover {
|
| 47 |
-
transform: translateY(-5px);
|
| 48 |
-
box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
|
| 49 |
-
}
|
| 50 |
-
|
| 51 |
-
.feature-card {
|
| 52 |
-
background: rgba(30, 41, 59, 0.5);
|
| 53 |
-
border: 1px solid rgba(255, 255, 255, 0.05);
|
| 54 |
-
}
|
| 55 |
-
|
| 56 |
-
.step-card {
|
| 57 |
-
background: rgba(30, 41, 59, 0.7);
|
| 58 |
-
backdrop-filter: blur(5px);
|
| 59 |
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
| 60 |
-
}
|
| 61 |
-
|
| 62 |
-
.glow {
|
| 63 |
-
box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
|
| 64 |
-
}
|
| 65 |
-
|
| 66 |
-
.pulse {
|
| 67 |
-
animation: pulse 2s infinite;
|
| 68 |
-
}
|
| 69 |
-
|
| 70 |
-
@keyframes pulse {
|
| 71 |
-
0% {
|
| 72 |
-
box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
|
| 73 |
-
}
|
| 74 |
-
70% {
|
| 75 |
-
box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
|
| 76 |
-
}
|
| 77 |
-
100% {
|
| 78 |
-
box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
|
| 79 |
-
}
|
| 80 |
-
}
|
| 81 |
-
|
| 82 |
-
.hero-bg {
|
| 83 |
-
background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
|
| 84 |
-
radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
|
| 85 |
-
}
|
| 86 |
-
|
| 87 |
-
.feature-icon {
|
| 88 |
-
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
|
| 89 |
-
}
|
| 90 |
-
|
| 91 |
-
.terminal {
|
| 92 |
-
background: #0f172a;
|
| 93 |
-
border-radius: 12px;
|
| 94 |
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
|
| 95 |
-
}
|
| 96 |
-
|
| 97 |
-
.terminal-header {
|
| 98 |
-
background: #1e293b;
|
| 99 |
-
border-top-left-radius: 12px;
|
| 100 |
-
border-top-right-radius: 12px;
|
| 101 |
-
}
|
| 102 |
-
|
| 103 |
-
.terminal-content {
|
| 104 |
-
font-family: 'Courier New', monospace;
|
| 105 |
-
font-size: 14px;
|
| 106 |
-
line-height: 1.5;
|
| 107 |
-
}
|
| 108 |
-
|
| 109 |
-
.terminal-content .comment {
|
| 110 |
-
color: #94a3b8;
|
| 111 |
-
}
|
| 112 |
-
|
| 113 |
-
.terminal-content .command {
|
| 114 |
-
color: #8b5cf6;
|
| 115 |
-
}
|
| 116 |
-
|
| 117 |
-
.terminal-content .output {
|
| 118 |
-
color: #60a5fa;
|
| 119 |
-
}
|
| 120 |
-
|
| 121 |
-
.terminal-content .success {
|
| 122 |
-
color: #34d399;
|
| 123 |
-
}
|
| 124 |
-
|
| 125 |
-
.terminal-content .error {
|
| 126 |
-
color: #ef4444;
|
| 127 |
-
}
|
| 128 |
-
|
| 129 |
-
.scrollbar-thin::-webkit-scrollbar {
|
| 130 |
-
width: 6px;
|
| 131 |
-
}
|
| 132 |
-
|
| 133 |
-
.scrollbar-thin::-webkit-scrollbar-thumb {
|
| 134 |
-
background-color: #4c51bf;
|
| 135 |
-
border-radius: 3px;
|
| 136 |
-
}
|
| 137 |
-
</style>
|
| 138 |
-
</head>
|
| 139 |
-
<body class="min-h-screen">
|
| 140 |
-
<!-- Navigation -->
|
| 141 |
-
<nav class="fixed w-full z-50 py-4 px-6 flex justify-between items-center backdrop-blur-md bg-slate-900/80">
|
| 142 |
-
<div class="flex items-center space-x-2">
|
| 143 |
-
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-indigo-500 to-purple-600 flex items-center justify-center">
|
| 144 |
-
<i class="fas fa-link text-white text-xl"></i>
|
| 145 |
-
</div>
|
| 146 |
-
<span class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-indigo-400 to-purple-500">Bondr</span>
|
| 147 |
-
</div>
|
| 148 |
-
|
| 149 |
-
<div class="hidden md:flex space-x-8">
|
| 150 |
-
<a href="#features" class="text-slate-300 hover:text-white transition">Features</a>
|
| 151 |
-
<a href="#how-it-works" class="text-slate-300 hover:text-white transition">How It Works</a>
|
| 152 |
-
<a href="#technology" class="text-slate-300 hover:text-white transition">Technology</a>
|
| 153 |
-
<a href="#team" class="text-slate-300 hover:text-white transition">Team</a>
|
| 154 |
-
</div>
|
| 155 |
-
|
| 156 |
-
<div class="flex space-x-4">
|
| 157 |
-
<button class="px-4 py-2 rounded-lg bg-slate-800 text-slate-300 hover:text-white transition">Sign In</button>
|
| 158 |
-
<button class="px-4 py-2 rounded-lg bg-gradient-to-r from-indigo-500 to-purple-600 text-white font-medium hover:from-indigo-600 hover:to-purple-700 transition">Get Started</button>
|
| 159 |
-
</div>
|
| 160 |
-
</nav>
|
| 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 |
-
<!-- Terminal Preview -->
|
| 190 |
-
<div class="w-full max-w-3xl mx-auto mb-16">
|
| 191 |
-
<div class="terminal">
|
| 192 |
-
<div class="terminal-header py-3 px-4 flex items-center">
|
| 193 |
-
<div class="flex space-x-2">
|
| 194 |
-
<div class="w-3 h-3 rounded-full bg-red-500"></div>
|
| 195 |
-
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
|
| 196 |
-
<div class="w-3 h-3 rounded-full bg-green-500"></div>
|
| 197 |
-
</div>
|
| 198 |
-
<div class="text-slate-400 text-sm ml-4">Bondr Terminal</div>
|
| 199 |
-
</div>
|
| 200 |
-
<div class="p-6 terminal-content">
|
| 201 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="command">create-bondr-group</span> <span class="text-slate-400">--name "Project Alpha"</span></div>
|
| 202 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="command">add-member</span> <span class="text-slate-400">--user @designer</span></div>
|
| 203 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="command">add-member</span> <span class="text-slate-400">--user @developer</span></div>
|
| 204 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="command">deploy-contract</span> <span class="text-slate-400">--type multi-sig</span></div>
|
| 205 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="command">set-milestones</span> <span class="text-slate-400">--design 30% --development 50% --delivery 20%</span></div>
|
| 206 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="command">generate-checkout</span> <span class="text-slate-400">--currency USD</span></div>
|
| 207 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="success">✓ Group "Project Alpha" created successfully</span></div>
|
| 208 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="success">✓ Smart contract deployed at 0x742d35Cc6634C0532925a3b844Bc454e4438f44e</span></div>
|
| 209 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="success">✓ Multi-sig wallet generated</span></div>
|
| 210 |
-
<div class="mb-2"><span class="text-green-400">></span> <span class="success">✓ Checkout link ready: https://bondr.link/project-alpha</span></div>
|
| 211 |
-
</div>
|
| 212 |
-
</div>
|
| 213 |
-
</div>
|
| 214 |
-
</section>
|
| 215 |
-
|
| 216 |
-
<!-- Features Section -->
|
| 217 |
-
<section id="features" class="py-20 px-6">
|
| 218 |
-
<div class="max-w-6xl mx-auto">
|
| 219 |
-
<div class="text-center mb-16">
|
| 220 |
-
<h2 class="text-4xl font-bold mb-4">How Bondr Works</h2>
|
| 221 |
-
<p class="text-xl text-slate-300 max-w-3xl mx-auto">
|
| 222 |
-
Transform your group collaborations with programmable trust and automated compliance
|
| 223 |
-
</p>
|
| 224 |
-
</div>
|
| 225 |
-
|
| 226 |
-
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 227 |
-
<!-- Feature 1 -->
|
| 228 |
-
<div class="card p-6">
|
| 229 |
-
<div class="w-14 h-14 rounded-xl feature-icon flex items-center justify-center mb-6">
|
| 230 |
-
<i class="fas fa-robot text-white text-2xl"></i>
|
| 231 |
-
</div>
|
| 232 |
-
<h3 class="text-2xl font-bold mb-3">Telegram + Smart Contracts</h3>
|
| 233 |
-
<p class="text-slate-300 mb-4">
|
| 234 |
-
Add our Telegram bot to instantly create a multi-signature wallet and smart contract for your group.
|
| 235 |
-
</p>
|
| 236 |
-
<ul class="text-slate-400 space-y-2">
|
| 237 |
-
<li class="flex items-start">
|
| 238 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 239 |
-
<span>Auto-deploy Safe multi-sig wallet</span>
|
| 240 |
-
</li>
|
| 241 |
-
<li class="flex items-start">
|
| 242 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 243 |
-
<span>Smart contract via Thirdweb or Gnosis</span>
|
| 244 |
-
</li>
|
| 245 |
-
<li class="flex items-start">
|
| 246 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 247 |
-
<span>Wallet addresses for all members</span>
|
| 248 |
-
</li>
|
| 249 |
-
</ul>
|
| 250 |
-
</div>
|
| 251 |
-
|
| 252 |
-
<!-- Feature 2 -->
|
| 253 |
-
<div class="card p-6">
|
| 254 |
-
<div class="w-14 h-14 rounded-xl feature-icon flex items-center justify-center mb-6">
|
| 255 |
-
<i class="fas fa-sliders-h text-white text-2xl"></i>
|
| 256 |
-
</div>
|
| 257 |
-
<h3 class="text-2xl font-bold mb-3">Dynamic Configuration</h3>
|
| 258 |
-
<p class="text-slate-300 mb-4">
|
| 259 |
-
Define roles, distribution percentages, and milestones through our AI bot.
|
| 260 |
-
</p>
|
| 261 |
-
<ul class="text-slate-400 space-y-2">
|
| 262 |
-
<li class="flex items-start">
|
| 263 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 264 |
-
<span>Role-based fund distribution</span>
|
| 265 |
-
</li>
|
| 266 |
-
<li class="flex items-start">
|
| 267 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 268 |
-
<span>Conditional release logic</span>
|
| 269 |
-
</li>
|
| 270 |
-
<li class="flex items-start">
|
| 271 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 272 |
-
<span>Milestone-based triggers</span>
|
| 273 |
-
</li>
|
| 274 |
-
</ul>
|
| 275 |
-
</div>
|
| 276 |
-
|
| 277 |
-
<!-- Feature 3 -->
|
| 278 |
-
<div class="card p-6">
|
| 279 |
-
<div class="w-14 h-14 rounded-xl feature-icon flex items-center justify-center mb-6">
|
| 280 |
-
<i class="fas fa-shield-alt text-white text-2xl"></i>
|
| 281 |
-
</div>
|
| 282 |
-
<h3 class="text-2xl font-bold mb-3">Compliance & Security</h3>
|
| 283 |
-
<p class="text-slate-300 mb-4">
|
| 284 |
-
Auto-convert fiat to crypto with built-in compliance and penalty logic.
|
| 285 |
-
</p>
|
| 286 |
-
<ul class="text-slate-400 space-y-2">
|
| 287 |
-
<li class="flex items-start">
|
| 288 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 289 |
-
<span>Fiat onramps via Transak/MoonPay</span>
|
| 290 |
-
</li>
|
| 291 |
-
<li class="flex items-start">
|
| 292 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 293 |
-
<span>Penalty logic for off-chain payments</span>
|
| 294 |
-
</li>
|
| 295 |
-
<li class="flex items-start">
|
| 296 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 297 |
-
<span>Auto-compliance with regulations</span>
|
| 298 |
-
</li>
|
| 299 |
-
</ul>
|
| 300 |
-
</div>
|
| 301 |
-
|
| 302 |
-
<!-- Feature 4 -->
|
| 303 |
-
<div class="card p-6">
|
| 304 |
-
<div class="w-14 h-14 rounded-xl feature-icon flex items-center justify-center mb-6">
|
| 305 |
-
<i class="fas fa-link text-white text-2xl"></i>
|
| 306 |
-
</div>
|
| 307 |
-
<h3 class="text-2xl font-bold mb-3">Business Link Generation</h3>
|
| 308 |
-
<p class="text-slate-300 mb-4">
|
| 309 |
-
Create unique sales links with referral tracking and analytics.
|
| 310 |
-
</p>
|
| 311 |
-
<ul class="text-slate-400 space-y-2">
|
| 312 |
-
<li class="flex items-start">
|
| 313 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 314 |
-
<span>Stripe/LemonSqueezy integration</span>
|
| 315 |
-
</li>
|
| 316 |
-
<li class="flex items-start">
|
| 317 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 318 |
-
<span>Referral ID for each stakeholder</span>
|
| 319 |
-
</li>
|
| 320 |
-
<li class="flex items-start">
|
| 321 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 322 |
-
<span>Analytics dashboard per user</span>
|
| 323 |
-
</li>
|
| 324 |
-
</ul>
|
| 325 |
-
</div>
|
| 326 |
-
|
| 327 |
-
<!-- Feature 5 -->
|
| 328 |
-
<div class="card p-6">
|
| 329 |
-
<div class="w-14 h-14 rounded-xl feature-icon flex items-center justify-center mb-6">
|
| 330 |
-
<i class="fas fa-chart-line text-white text-2xl"></i>
|
| 331 |
-
</div>
|
| 332 |
-
<h3 class="text-2xl font-bold mb-3">Referral & Source Tracing</h3>
|
| 333 |
-
<p class="text-slate-300 mb-4">
|
| 334 |
-
Track revenue attribution with UTM and wallet binding.
|
| 335 |
-
</p>
|
| 336 |
-
<ul class="text-slate-400 space-y-2">
|
| 337 |
-
<li class="flex items-start">
|
| 338 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 339 |
-
<span>Wallet-to-Telegram mapping</span>
|
| 340 |
-
</li>
|
| 341 |
-
<li class="flex items-start">
|
| 342 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 343 |
-
<span>Revenue linked to unique identifiers</span>
|
| 344 |
-
</li>
|
| 345 |
-
<li class="flex items-start">
|
| 346 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 347 |
-
<span>Cheaper transactions via zkSync/Optimism</span>
|
| 348 |
-
</li>
|
| 349 |
-
</ul>
|
| 350 |
-
</div>
|
| 351 |
-
|
| 352 |
-
<!-- Feature 6 -->
|
| 353 |
-
<div class="card p-6">
|
| 354 |
-
<div class="w-14 h-14 rounded-xl feature-icon flex items-center justify-center mb-6">
|
| 355 |
-
<i class="fas fa-gavel text-white text-2xl"></i></i>
|
| 356 |
-
</div>
|
| 357 |
-
<h3 class="text-2xl font-bold mb-3">Legal & Risk Management</h3>
|
| 358 |
-
<p class="text-slate-300 mb-4">
|
| 359 |
-
Auto-generated terms and smart contract enforcement.
|
| 360 |
-
</p>
|
| 361 |
-
<ul class="text-slate-400 space-y-2">
|
| 362 |
-
<li class="flex items-start">
|
| 363 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 364 |
-
<span>Auto-generated legal terms</span>
|
| 365 |
-
</li>
|
| 366 |
-
<li class="flex items-start">
|
| 367 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 368 |
-
<span>Plain language contract summaries</span>
|
| 369 |
-
</li>
|
| 370 |
-
<li class="flex items-start">
|
| 371 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 372 |
-
<span>Reputation system for participants</span>
|
| 373 |
-
</li>
|
| 374 |
-
</ul>
|
| 375 |
-
</div>
|
| 376 |
-
</div>
|
| 377 |
-
</div>
|
| 378 |
-
</section>
|
| 379 |
|
| 380 |
-
|
| 381 |
-
|
| 382 |
-
<div class="max-w-6xl mx-auto">
|
| 383 |
-
<div class="text-center mb-16">
|
| 384 |
-
<h2 class="text-4xl font-bold mb-4">How Bondr Works</h2>
|
| 385 |
-
<p class="text-xl text-slate-300 max-w-3xl mx-auto">
|
| 386 |
-
A step-by-step guide to creating trust in your group collaborations
|
| 387 |
-
</p>
|
| 388 |
-
</div>
|
| 389 |
-
|
| 390 |
-
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
|
| 391 |
-
<div class="space-y-8">
|
| 392 |
-
<div class="step-card p-6 rounded-xl">
|
| 393 |
-
<div class="flex items-start">
|
| 394 |
-
<div class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 flex items-center justify-center text-white font-bold mr-4">1</div>
|
| 395 |
-
<div>
|
| 396 |
-
<h3 class="text-xl font-bold mb-2">Create Group & Add Bot</h3>
|
| 397 |
-
<p class="text-slate-300">
|
| 398 |
-
Start a Telegram group and add the Bondr bot. The bot will automatically create a multi-signature wallet and deploy a smart contract for your group.
|
| 399 |
-
</p>
|
| 400 |
-
</div>
|
| 401 |
-
</div>
|
| 402 |
-
</div>
|
| 403 |
-
|
| 404 |
-
<div class="step-card p-6 rounded-xl">
|
| 405 |
-
<div class="flex items-start">
|
| 406 |
-
<div class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 flex items-center justify-center text-white font-bold mr-4">2</div>
|
| 407 |
-
<div>
|
| 408 |
-
<h3 class="text-xl font-bold mb-2">Configure Roles & Milestones</h3>
|
| 409 |
-
<p class="text-slate-300">
|
| 410 |
-
Define member roles (Designer, Developer, etc.) and set distribution percentages. Configure milestones and conditions for fund release.
|
| 411 |
-
</p>
|
| 412 |
-
</div>
|
| 413 |
-
</div>
|
| 414 |
-
</div>
|
| 415 |
-
|
| 416 |
-
<div class="step-card p-6 rounded-xl">
|
| 417 |
-
<div class="flex items-start">
|
| 418 |
-
<div class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 flex items-center justify-center text-white font-bold mr-4">3</div>
|
| 419 |
-
<div>
|
| 420 |
-
<h3 class="text-xl font-bold mb-2">Generate Payment Infrastructure</h3>
|
| 421 |
-
<p class="text-slate-300">
|
| 422 |
-
The bot generates a deposit-only wallet with fiat-to-crypto conversion. Each member gets a unique referral link and analytics dashboard.
|
| 423 |
-
</p>
|
| 424 |
-
</div>
|
| 425 |
-
</div>
|
| 426 |
-
</div>
|
| 427 |
-
|
| 428 |
-
<div class="step-card p-6 rounded-xl">
|
| 429 |
-
<div class="flex items-start">
|
| 430 |
-
<div class="flex-shrink-0 w-10 h-10 rounded-full bg-indigo-500 flex items-center justify-center text-white font-bold mr-4">4</div>
|
| 431 |
-
<div>
|
| 432 |
-
<h3 class="text-xl font-bold mb-2">Execute & Track</h3>
|
| 433 |
-
<p class="text-slate-300">
|
| 434 |
-
As milestones are completed, funds are automatically released. Track performance, referrals, and revenue attribution in real-time.
|
| 435 |
-
</p>
|
| 436 |
-
</div>
|
| 437 |
-
</div>
|
| 438 |
-
</div>
|
| 439 |
-
</div>
|
| 440 |
-
|
| 441 |
-
<div class="bg-slate-800 rounded-xl p-6">
|
| 442 |
-
<div class="flex justify-between items-center mb-4">
|
| 443 |
-
<div class="text-slate-400">Project Alpha</div>
|
| 444 |
-
<div class="flex space-x-2">
|
| 445 |
-
<div class="w-3 h-3 rounded-full bg-red-500"></div>
|
| 446 |
-
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
|
| 447 |
-
<div class="w-3 h-3 rounded-full bg-green-500"></div>
|
| 448 |
-
</div>
|
| 449 |
-
</div>
|
| 450 |
-
|
| 451 |
-
<div class="bg-slate-900 rounded-lg p-4 mb-4">
|
| 452 |
-
<div class="text-slate-400 text-sm mb-2">Group Members</div>
|
| 453 |
-
<div class="flex flex-wrap gap-2 mb-4">
|
| 454 |
-
<div class="px-3 py-1 bg-indigo-900/50 text-indigo-300 rounded-full text-sm">@designer</div>
|
| 455 |
-
<div class="px-3 py-1 bg-indigo-900/50 text-indigo-300 rounded-full text-sm">@developer</div>
|
| 456 |
-
<div class="px-3 py-1 bg-indigo-900/50 text-indigo-300 rounded-full text-sm">@project_manager</div>
|
| 457 |
-
</div>
|
| 458 |
-
|
| 459 |
-
<div class="text-slate-400 text-sm mb-2">Milestones</div>
|
| 460 |
-
<div class="space-y-3">
|
| 461 |
-
<div>
|
| 462 |
-
<div class="flex justify-between text-sm mb-1">
|
| 463 |
-
<span>Design Phase</span>
|
| 464 |
-
<span>30%</span>
|
| 465 |
-
</div>
|
| 466 |
-
<div class="w-full bg-slate-700 rounded-full h-2">
|
| 467 |
-
<div class="bg-indigo-500 h-2 rounded-full" style="width: 30%"></div>
|
| 468 |
-
</div>
|
| 469 |
-
</div>
|
| 470 |
-
<div>
|
| 471 |
-
<div class="flex justify-between text-sm mb-1">
|
| 472 |
-
<span>Development</span>
|
| 473 |
-
<span>50%</span>
|
| 474 |
-
</div>
|
| 475 |
-
<div class="w-full bg-slate-700 rounded-full h-2">
|
| 476 |
-
<div class="bg-indigo-500 h-2 rounded-full" style="width: 50%"></div>
|
| 477 |
-
</div>
|
| 478 |
-
</div>
|
| 479 |
-
<div>
|
| 480 |
-
<div class="flex justify-between text-sm mb-1">
|
| 481 |
-
<span>Delivery</span>
|
| 482 |
-
<span>20%</span>
|
| 483 |
-
</div>
|
| 484 |
-
<div class="w-full bg-slate-700 rounded-full h-2">
|
| 485 |
-
<div class="bg-indigo-500 h-2 rounded-full" style="width: 20%"></div>
|
| 486 |
-
</div>
|
| 487 |
-
</div>
|
| 488 |
-
</div>
|
| 489 |
-
</div>
|
| 490 |
-
|
| 491 |
-
<div class="bg-slate-900 rounded-lg p-4">
|
| 492 |
-
<div class="text-slate-400 text-sm mb-2">Payment Links</div>
|
| 493 |
-
<div class="space-y-2">
|
| 494 |
-
<div class="flex justify-between items-center p-2 bg-slate-800 rounded">
|
| 495 |
-
<div class="text-sm">@designer</div>
|
| 496 |
-
<div class="text-indigo-400 text-sm">https://bondr.link/dsgn123</div>
|
| 497 |
-
</div>
|
| 498 |
-
<div class="flex justify-between items-center p-2 bg-slate-800 rounded">
|
| 499 |
-
<div class="text-sm">@developer</div>
|
| 500 |
-
<div class="text-indigo-400 text-sm">https://bondr.link/dev456</div>
|
| 501 |
-
</div>
|
| 502 |
-
<div class="flex justify-between items-center p-2 bg-slate-800 rounded">
|
| 503 |
-
<div class="text-sm">@project_manager</div>
|
| 504 |
-
<div class="text-indigo-400 text-sm">https://bondr.link/pm789</div>
|
| 505 |
-
</div>
|
| 506 |
-
</div>
|
| 507 |
-
</div>
|
| 508 |
-
</div>
|
| 509 |
-
</div>
|
| 510 |
-
</div>
|
| 511 |
-
</section>
|
| 512 |
|
| 513 |
-
|
| 514 |
-
|
| 515 |
-
|
| 516 |
-
|
| 517 |
-
|
| 518 |
-
|
| 519 |
-
|
| 520 |
-
|
| 521 |
-
|
| 522 |
-
|
| 523 |
-
|
| 524 |
-
|
| 525 |
-
|
| 526 |
-
|
| 527 |
-
|
| 528 |
-
|
| 529 |
-
|
| 530 |
-
</div>
|
| 531 |
-
<ul class="text-slate-300 space-y-2">
|
| 532 |
-
<li class="flex items-start">
|
| 533 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 534 |
-
<span>BotFather + Python/Node backend</span>
|
| 535 |
-
</li>
|
| 536 |
-
<li class="flex items-start">
|
| 537 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 538 |
-
<span>Group management APIs</span>
|
| 539 |
-
</li>
|
| 540 |
-
<li class="flex items-start">
|
| 541 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 542 |
-
<span>Real-time notifications</span>
|
| 543 |
-
</li>
|
| 544 |
-
</ul>
|
| 545 |
-
</div>
|
| 546 |
-
|
| 547 |
-
<div class="feature-card p-6 rounded-xl">
|
| 548 |
-
<div class="flex items-center mb-4">
|
| 549 |
-
<div class="w-12 h-12 rounded-lg bg-indigo-900/50 flex items-center justify-center mr-4">
|
| 550 |
-
<i class="fas fa-code text-indigo-400 text-2xl"></i>
|
| 551 |
-
</div>
|
| 552 |
-
<h3 class="text-xl font-bold">Smart Contracts</h3>
|
| 553 |
-
</div>
|
| 554 |
-
<ul class="text-slate-300 space-y-2">
|
| 555 |
-
<li class="flex items-start">
|
| 556 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 557 |
-
<span>Thirdweb + Safe SDK</span>
|
| 558 |
-
</li>
|
| 559 |
-
<li class="flex items-start">
|
| 560 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 561 |
-
<span>Multi-sig wallet generation</span>
|
| 562 |
-
</li>
|
| 563 |
-
<li class="flex items-start">
|
| 564 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 565 |
-
<span>Conditional logic deployment</span>
|
| 566 |
-
</li>
|
| 567 |
-
</ul>
|
| 568 |
-
</div>
|
| 569 |
-
|
| 570 |
-
<div class="feature-card p-6 rounded-xl">
|
| 571 |
-
<div class="flex items-center mb-4">
|
| 572 |
-
<div class="w-12 h-12 rounded-lg bg-indigo-900/50 flex items-center justify-center mr-4">
|
| 573 |
-
<i class="fas fa-money-bill-wave text-indigo-400 text-2xl"></i>
|
| 574 |
-
</div>
|
| 575 |
-
<h3 class="text-xl font-bold">Payment Processing</h3>
|
| 576 |
-
</div>
|
| 577 |
-
<ul class="text-slate-300 space-y-2">
|
| 578 |
-
<li class="flex items-start">
|
| 579 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 580 |
-
<span>Transak / MoonPay / Wert</span>
|
| 581 |
-
</li>
|
| 582 |
-
<li class="flex items-start">
|
| 583 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 584 |
-
<span>Stripe + crypto plugin</span>
|
| 585 |
-
</li>
|
| 586 |
-
<li class="flex items-start">
|
| 587 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 588 |
-
<span>Auto-convert fiat to crypto</span>
|
| 589 |
-
</li>
|
| 590 |
-
</ul>
|
| 591 |
-
</div>
|
| 592 |
-
|
| 593 |
-
<div class="feature-card p-6 rounded-xl">
|
| 594 |
-
<div class="flex items-center mb-4">
|
| 595 |
-
<div class="w-12 h-12 rounded-lg bg-indigo-900/50 flex items-center justify-center mr-4">
|
| 596 |
-
<i class="fas fa-link text-indigo-400 text-2xl"></i>
|
| 597 |
-
</div>
|
| 598 |
-
<h3 class="text-xl font-bold">Referral System</h3>
|
| 599 |
-
</div>
|
| 600 |
-
<ul class="text-slate-300 space-y-2">
|
| 601 |
-
<li class="flex items-start">
|
| 602 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 603 |
-
<span>FirstPromoter API</span>
|
| 604 |
-
</li>
|
| 605 |
-
<li class="flex items-start">
|
| 606 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 607 |
-
<span>Custom Webhooks</span>
|
| 608 |
-
</li>
|
| 609 |
-
<li class="flex items-start">
|
| 610 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 611 |
-
<span>Analytics dashboard</span>
|
| 612 |
-
</li>
|
| 613 |
-
</ul>
|
| 614 |
-
</div>
|
| 615 |
-
|
| 616 |
-
<div class="feature-card p-6 rounded-xl">
|
| 617 |
-
<div class="flex items-center mb-4">
|
| 618 |
-
<div class="w-12 h-12 rounded-lg bg-indigo-900/50 flex items-center justify-center mr-4">
|
| 619 |
-
<i class="fas fa-cogs text-indigo-400 text-2xl"></i>
|
| 620 |
-
</div>
|
| 621 |
-
<h3 class="text-xl font-bold">Automation</h3>
|
| 622 |
-
</div>
|
| 623 |
-
<ul class="text-slate-300 space-y-2">
|
| 624 |
-
<li class="flex items-start">
|
| 625 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 626 |
-
<span>Make.com / n8n</span>
|
| 627 |
-
</li>
|
| 628 |
-
<li class="flex items-start">
|
| 629 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 630 |
-
<span>Workflow automation</span>
|
| 631 |
-
</li>
|
| 632 |
-
<li class="flex items-start">
|
| 633 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 634 |
-
<span>Event triggers</span>
|
| 635 |
-
</li>
|
| 636 |
-
</ul>
|
| 637 |
-
</div>
|
| 638 |
-
|
| 639 |
-
<div class="feature-card p-6 rounded-xl">
|
| 640 |
-
<div class="flex items-center mb-4">
|
| 641 |
-
<div class="w-12 h-12 rounded-lg bg-indigo-900/50 flex items-center justify-center mr-4">
|
| 642 |
-
<i class="fas fa-shield-alt text-indigo-400 text-2xl"></i>
|
| 643 |
-
</div>
|
| 644 |
-
<h3 class="text-xl font-bold">Security & Compliance</h3>
|
| 645 |
-
</div>
|
| 646 |
-
<ul class="text-slate-300 space-y-2">
|
| 647 |
-
<li class="flex items-start">
|
| 648 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 649 |
-
<span>Fractal, Polygon ID, Web3Auth</span>
|
| 650 |
-
</li>
|
| 651 |
-
<li class="flex items-start">
|
| 652 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 653 |
-
<span>Reputation system</span>
|
| 654 |
-
</li>
|
| 655 |
-
<li class="flex items-start">
|
| 656 |
-
<i class="fas fa-check text-indigo-400 mt-1 mr-2"></i>
|
| 657 |
-
<span>Penalty logic</span>
|
| 658 |
-
</li>
|
| 659 |
-
</ul>
|
| 660 |
-
</div>
|
| 661 |
-
</div>
|
| 662 |
-
</div>
|
| 663 |
-
</section>
|
| 664 |
|
| 665 |
-
|
| 666 |
-
|
| 667 |
-
|
| 668 |
-
|
| 669 |
-
|
| 670 |
-
|
| 671 |
-
|
| 672 |
-
|
| 673 |
-
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
| 681 |
-
</
|
|
|
|
| 682 |
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
|
| 686 |
-
|
| 687 |
-
|
| 688 |
-
|
| 689 |
-
<div class="w-8 h-8 rounded-full bg-gradient-to-r from-indigo-500 to-purple-600 flex items-center justify-center">
|
| 690 |
-
<i class="fas fa-link text-white"></i>
|
| 691 |
-
</div>
|
| 692 |
-
<span class="text-2xl font-bold">Bondr</span>
|
| 693 |
-
</div>
|
| 694 |
-
<p class="text-slate-400">Smart Contract-Driven Telegram Groups</p>
|
| 695 |
-
</div>
|
| 696 |
-
|
| 697 |
-
<div class="flex flex-wrap justify-center gap-8">
|
| 698 |
-
<div>
|
| 699 |
-
<h4 class="text-slate-300 font-bold mb-3">Product</h4>
|
| 700 |
-
<ul class="space-y-2 text-slate-400">
|
| 701 |
-
<li><a href="#" class="hover:text-indigo-400 transition">Features</a></li>
|
| 702 |
-
<li><a href="#" class="hover:text-indigo-400 transition">Pricing</a></li>
|
| 703 |
-
<li><a href="#" class="hover:text-indigo-400 transition">Integrations</a></li>
|
| 704 |
-
</ul>
|
| 705 |
-
</div>
|
| 706 |
-
|
| 707 |
-
<div>
|
| 708 |
-
<h4 class="text-slate-300 font-bold mb-3">Resources</h4>
|
| 709 |
-
<ul class="space-y-2 text-slate-400">
|
| 710 |
-
<li><a href="#" class="hover:text-indigo-400 transition">Documentation</a></li>
|
| 711 |
-
<li><a href="#" class="hover:text-indigo-400 transition">API Reference</a></li>
|
| 712 |
-
<li><a href="#" class="hover:text-indigo-400 transition">Guides</a></li>
|
| 713 |
-
</ul>
|
| 714 |
-
</div>
|
| 715 |
-
|
| 716 |
-
<div>
|
| 717 |
-
<h4 class="text-slate-300 font-bold mb-3">Company</h4>
|
| 718 |
-
<ul class="space-y-2 text-slate-400">
|
| 719 |
-
<li><a href="#" class="hover:text-indigo-400 transition">About</a></li>
|
| 720 |
-
<li><a href="#" class="hover:text-indigo-400 transition">Blog</a></li>
|
| 721 |
-
<li><a href="#" class="hover:text-indigo-400 transition">Careers</a></li>
|
| 722 |
-
</ul>
|
| 723 |
-
</div>
|
| 724 |
-
</div>
|
| 725 |
-
</div>
|
| 726 |
-
|
| 727 |
-
<div class="border-t border-slate-800 mt-10 pt-6 text-center text-slate-500 text-sm">
|
| 728 |
-
<p>© 2023 Bondr. All rights reserved. Built with ❤️ for the decentralized web.</p>
|
| 729 |
-
</div>
|
| 730 |
</div>
|
| 731 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 732 |
|
| 733 |
-
|
| 734 |
-
// Simple animation for feature cards on scroll
|
| 735 |
-
document.addEventListener('DOMContentLoaded', function() {
|
| 736 |
-
const cards = document.querySelectorAll('.card, .feature-card, .step-card');
|
| 737 |
-
|
| 738 |
-
const observer = new IntersectionObserver((entries) => {
|
| 739 |
-
entries.forEach(entry => {
|
| 740 |
-
if (entry.isIntersecting) {
|
| 741 |
-
entry.target.style.opacity = 1;
|
| 742 |
-
entry.target.style.transform = 'translateY(0)';
|
| 743 |
-
}
|
| 744 |
-
});
|
| 745 |
-
}, { threshold: 0.1 });
|
| 746 |
-
|
| 747 |
-
cards.forEach(card => {
|
| 748 |
-
card.style.opacity = 0;
|
| 749 |
-
card.style.transform = 'translateY(20px)';
|
| 750 |
-
card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
|
| 751 |
-
observer.observe(card);
|
| 752 |
-
});
|
| 753 |
-
});
|
| 754 |
-
</script>
|
| 755 |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=web3district/bondr2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 756 |
</html>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
| 6 |
+
<title>Bondr – Smart Contract-Driven Telegram Groups</title>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
+
<!-- Tailwind with extended theme -->
|
| 9 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
+
<script>
|
| 11 |
+
tailwind.config = {
|
| 12 |
+
theme: {
|
| 13 |
+
extend: {
|
| 14 |
+
colors: {
|
| 15 |
+
primary: '#5F2EEA',
|
| 16 |
+
'primary-light': '#9C8AF5',
|
| 17 |
+
background: '#F9F9FC',
|
| 18 |
+
'ribbon-gray': '#D1CFD9',
|
| 19 |
+
'text-dark': '#1E1E24',
|
| 20 |
+
success: '#24E1A0',
|
| 21 |
+
error: '#FF6B6B',
|
| 22 |
+
'accent-blue': '#5DC9F4'
|
| 23 |
+
},
|
| 24 |
+
borderRadius: { lg: '1.5rem', xl: '2rem' },
|
| 25 |
+
boxShadow: {
|
| 26 |
+
md: '0 8px 24px rgba(0,0,0,0.06)',
|
| 27 |
+
lg: '0 12px 40px rgba(0,0,0,0.08)'
|
| 28 |
+
},
|
| 29 |
+
fontFamily: { sans: ['Poppins','sans-serif'] }
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
+
<link rel="stylesheet" href="styles.css"/>
|
| 36 |
+
</head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
+
<body class="antialiased">
|
| 39 |
+
<!-- NAVIGATION -->
|
| 40 |
+
<nav class="fixed w-full bg-white/30 backdrop-blur-md px-8 py-4 flex items-center justify-between z-50">
|
| 41 |
+
<div class="flex items-center gap-4">
|
| 42 |
+
<img src="bonderLOGONEWPURPLE.png" class="w-10 h-10 rounded-full" alt="Bondr Logo"/>
|
| 43 |
+
<span class="text-2xl font-bold text-primary">Bondr</span>
|
| 44 |
+
</div>
|
| 45 |
+
<ul class="hidden md:flex gap-8 text-text-dark">
|
| 46 |
+
<li><a href="#features">Features</a></li>
|
| 47 |
+
<li><a href="#how-it-works">How It Works</a></li>
|
| 48 |
+
<li><a href="#contact">Contact</a></li>
|
| 49 |
+
</ul>
|
| 50 |
+
<div class="flex gap-4">
|
| 51 |
+
<button class="btn-secondary">Sign In</button>
|
| 52 |
+
<button class="btn-primary">Get Started</button>
|
| 53 |
+
</div>
|
| 54 |
+
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
+
<!-- HERO -->
|
| 57 |
+
<section class="min-h-screen flex flex-col items-center justify-center text-center px-6 bg-primary text-white pt-32">
|
| 58 |
+
<h1 class="text-5xl md:text-7xl mb-6 leading-tight">
|
| 59 |
+
Smart Contract-Driven<br/>
|
| 60 |
+
<span class="bg-clip-text text-transparent bg-gradient-to-r from-primary to-primary-light">
|
| 61 |
+
Telegram Groups
|
| 62 |
+
</span>
|
| 63 |
+
</h1>
|
| 64 |
+
<p class="text-xl max-w-2xl mb-8 text-background/80">
|
| 65 |
+
Bondr blends Telegram UX, on-chain trust & payments into one seamless flow.
|
| 66 |
+
</p>
|
| 67 |
+
<div class="flex flex-col sm:flex-row gap-4">
|
| 68 |
+
<button class="btn-primary glow">Create Your Bondr Group</button>
|
| 69 |
+
<button class="btn-secondary flex items-center gap-2">
|
| 70 |
+
<i class="fas fa-play-circle"></i> Watch Demo
|
| 71 |
+
</button>
|
| 72 |
+
</div>
|
| 73 |
+
</section>
|
| 74 |
|
| 75 |
+
<!-- FEATURES -->
|
| 76 |
+
<section id="features" class="py-20 px-6 bg-background">
|
| 77 |
+
<div class="max-w-6xl mx-auto grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 78 |
+
<div class="glass-card">
|
| 79 |
+
<div class="w-12 h-12 bg-primary flex items-center justify-center rounded-lg mb-4 text-white">
|
| 80 |
+
<i class="fas fa-robot"></i>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
</div>
|
| 82 |
+
<h3 class="text-2xl mb-2">Instant Multi-Sig</h3>
|
| 83 |
+
<p class="mb-4 text-text-dark/80">
|
| 84 |
+
Add our bot, auto-deploy Gnosis Safe wallet + smart contract.
|
| 85 |
+
</p>
|
| 86 |
+
<ul class="space-y-2 text-text-dark/70">
|
| 87 |
+
<li class="flex items-start">
|
| 88 |
+
<i class="fas fa-check mr-2 text-success"></i> Safe multi-sig creation
|
| 89 |
+
</li>
|
| 90 |
+
<li class="flex items-start">
|
| 91 |
+
<i class="fas fa-check mr-2 text-success"></i> Thirdweb / Gnosis SDK
|
| 92 |
+
</li>
|
| 93 |
+
</ul>
|
| 94 |
+
</div>
|
| 95 |
+
<!-- …repeat for each feature card… -->
|
| 96 |
+
</div>
|
| 97 |
+
</section>
|
| 98 |
|
| 99 |
+
<!-- (Add How-It-Works, Technology, CTA & Footer sections similarly) -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 100 |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=web3district/bondr2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 101 |
</html>
|