File size: 26,452 Bytes
5cff093 620fdec | 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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zentech | Web3 Innovation Incubator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Inter:wght@300;400;500;600&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #0a0a2a;
color: white;
}
.futuristic {
font-family: 'Orbitron', sans-serif;
}
.gradient-bg {
background: linear-gradient(135deg, #FF7A00 0%, #8A2BE2 100%);
}
.glow {
box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
}
.glow-secondary {
box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}
.progress-bar {
height: 12px;
border-radius: 6px;
background: rgba(255, 255, 255, 0.1);
}
.progress-fill {
height: 100%;
border-radius: 6px;
background: linear-gradient(90deg, #FF7A00, #8A2BE2);
transition: width 0.5s ease;
}
.project-card:hover {
transform: translateY(-5px);
transition: all 0.3s ease;
}
</style>
</head>
<body class="min-h-screen">
<!-- Vanta.js Background -->
<div id="vanta-bg" class="fixed top-0 left-0 w-full h-full -z-10"></div>
<!-- Navigation -->
<nav class="border-b border-gray-800 backdrop-blur-md bg-black bg-opacity-50 fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0">
<span class="text-2xl font-bold futuristic text-transparent bg-clip-text bg-gradient-to-r from-orange-500 to-purple-600">ZENTECH</span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-4">
<a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-white hover:bg-gray-800">Home</a>
<a href="#projects" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-800">Projects</a>
<a href="#about" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-800">About</a>
<a href="#invest" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white hover:bg-gray-800">Invest</a>
</div>
</div>
<div class="hidden md:block">
<button class="ml-4 px-4 py-2 rounded-lg gradient-bg text-white font-medium hover:opacity-90 transition duration-300 glow">
Connect Wallet
</button>
</div>
<div class="-mr-2 flex md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="text-center" data-aos="fade-up">
<h1 class="text-4xl md:text-6xl font-bold mb-6 futuristic text-transparent bg-clip-text bg-gradient-to-r from-orange-500 to-purple-600">
Where Innovation Meets Opportunity
</h1>
<p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto mb-10">
Invest in projects that change lives. Fund. Launch. Earn.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="px-8 py-4 rounded-xl gradient-bg text-white font-bold hover:opacity-90 transition duration-300 glow">
View Projects
</button>
<button class="px-8 py-4 rounded-xl bg-transparent border-2 border-purple-600 text-white font-bold hover:bg-purple-900 hover:bg-opacity-20 transition duration-300 glow-secondary">
Invest Now
</button>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-4 sm:px-6 lg:px-8 bg-black bg-opacity-40 backdrop-blur-lg">
<div class="max-w-7xl mx-auto" data-aos="fade-up">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 futuristic">About Zentech</h2>
<div class="w-24 h-1 gradient-bg mx-auto rounded-full"></div>
</div>
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2">
<p class="text-lg text-gray-300 mb-8">
Zentech is a Web3-powered incubator. Each project has a clear capital target. Once funded, we launch and share revenue transparently with investors.
</p>
<div class="grid grid-cols-2 gap-4">
<div class="p-6 rounded-2xl bg-gray-900 bg-opacity-50 border border-gray-800">
<div class="text-3xl mb-2">🌱</div>
<h3 class="font-bold futuristic">Agriculture</h3>
</div>
<div class="p-6 rounded-2xl bg-gray-900 bg-opacity-50 border border-gray-800">
<div class="text-3xl mb-2">🚚</div>
<h3 class="font-bold futuristic">Logistics</h3>
</div>
<div class="p-6 rounded-2xl bg-gray-900 bg-opacity-50 border border-gray-800">
<div class="text-3xl mb-2">🤖</div>
<h3 class="font-bold futuristic">AI</h3>
</div>
<div class="p-6 rounded-2xl bg-gray-900 bg-opacity-50 border border-gray-800">
<div class="text-3xl mb-2">🔐</div>
<h3 class="font-bold futuristic">Security</h3>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="rounded-2xl overflow-hidden border border-gray-800">
<img src="http://static.photos/technology/1200x630/42" alt="Zentech Technology" class="w-full h-auto">
</div>
</div>
</div>
</div>
</section>
<!-- Projects Dashboard -->
<section id="projects" class="py-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto" data-aos="fade-up">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 futuristic">Our Projects</h2>
<div class="w-24 h-1 gradient-bg mx-auto rounded-full"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Project 1 -->
<div class="project-card bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 hover:shadow-lg transition duration-300">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold futuristic">DeliveryPal</h3>
<span class="px-3 py-1 bg-green-900 bg-opacity-30 text-green-400 text-xs rounded-full">Open</span>
</div>
<p class="text-gray-400 mb-4">WhatsApp AI Delivery Service</p>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Raised: $12,000</span>
<span>Target: $50,000</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 24%"></div>
</div>
</div>
<div class="text-sm text-gray-300 mb-4">
<span class="font-bold text-orange-400">ROI:</span> 20–25% annually
</div>
<button class="w-full py-2 rounded-lg bg-purple-900 bg-opacity-30 text-white hover:bg-opacity-50 transition duration-300">
Invest Now
</button>
</div>
<!-- Project 2 -->
<div class="project-card bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 hover:shadow-lg transition duration-300">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold futuristic">Rosemary Farming</h3>
<span class="px-3 py-1 bg-green-900 bg-opacity-30 text-green-400 text-xs rounded-full">Open</span>
</div>
<p class="text-gray-400 mb-4">Farming & Essential Oils</p>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Raised: $8,500</span>
<span>Target: $30,000</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 28.3%"></div>
</div>
</div>
<div class="text-sm text-gray-300 mb-4">
<span class="font-bold text-orange-400">ROI:</span> 18–22% annually
</div>
<button class="w-full py-2 rounded-lg bg-purple-900 bg-opacity-30 text-white hover:bg-opacity-50 transition duration-300">
Invest Now
</button>
</div>
<!-- Project 3 -->
<div class="project-card bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 hover:shadow-lg transition duration-300">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold futuristic">Shea Butter</h3>
<span class="px-3 py-1 bg-green-900 bg-opacity-30 text-green-400 text-xs rounded-full">Open</span>
</div>
<p class="text-gray-400 mb-4">Oil Production</p>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Raised: $5,000</span>
<span>Target: $25,000</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 20%"></div>
</div>
</div>
<div class="text-sm text-gray-300 mb-4">
<span class="font-bold text-orange-400">ROI:</span> 15–20% annually
</div>
<button class="w-full py-2 rounded-lg bg-purple-900 bg-opacity-30 text-white hover:bg-opacity-50 transition duration-300">
Invest Now
</button>
</div>
<!-- Project 4 -->
<div class="project-card bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 hover:shadow-lg transition duration-300">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold futuristic">Chicken Gizzard</h3>
<span class="px-3 py-1 bg-green-900 bg-opacity-30 text-green-400 text-xs rounded-full">Open</span>
</div>
<p class="text-gray-400 mb-4">Export Project</p>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Raised: $6,800</span>
<span>Target: $40,000</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 17%"></div>
</div>
</div>
<div class="text-sm text-gray-300 mb-4">
<span class="font-bold text-orange-400">ROI:</span> 22–28% annually
</div>
<button class="w-full py-2 rounded-lg bg-purple-900 bg-opacity-30 text-white hover:bg-opacity-50 transition duration-300">
Invest Now
</button>
</div>
<!-- Project 5 -->
<div class="project-card bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 hover:shadow-lg transition duration-300">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold futuristic">AI Farmer Drone</h3>
<span class="px-3 py-1 bg-green-900 bg-opacity-30 text-green-400 text-xs rounded-full">Open</span>
</div>
<p class="text-gray-400 mb-4">Agricultural Automation</p>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Raised: $15,000</span>
<span>Target: $80,000</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 18.75%"></div>
</div>
</div>
<div class="text-sm text-gray-300 mb-4">
<span class="font-bold text-orange-400">ROI:</span> 30–35% annually
</div>
<button class="w-full py-2 rounded-lg bg-purple-900 bg-opacity-30 text-white hover:bg-opacity-50 transition duration-300">
Invest Now
</button>
</div>
<!-- Project 6 -->
<div class="project-card bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 hover:shadow-lg transition duration-300">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold futuristic">AI Weather Sensor</h3>
<span class="px-3 py-1 bg-green-900 bg-opacity-30 text-green-400 text-xs rounded-full">Open</span>
</div>
<p class="text-gray-400 mb-4">Agricultural Tool</p>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span>Raised: $9,200</span>
<span>Target: $45,000</span>
</div>
<div class="progress-bar">
<div class="progress-fill" style="width: 20.4%"></div>
</div>
</div>
<div class="text-sm text-gray-300 mb-4">
<span class="font-bold text-orange-400">ROI:</span> 25–30% annually
</div>
<button class="w-full py-2 rounded-lg bg-purple-900 bg-opacity-30 text-white hover:bg-opacity-50 transition duration-300">
Invest Now
</button>
</div>
</div>
</div>
</section>
<!-- Fundraising Dashboard -->
<section id="invest" class="py-20 px-4 sm:px-6 lg:px-8 bg-black bg-opacity-40 backdrop-blur-lg">
<div class="max-w-7xl mx-auto" data-aos="fade-up">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 futuristic">Investment Transparency</h2>
<div class="w-24 h-1 gradient-bg mx-auto rounded-full"></div>
</div>
<div class="bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-8">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-bold futuristic mb-4">Total Fundraising</h3>
<div class="mb-6">
<div class="flex justify-between text-lg mb-2">
<span>Raised:</span>
<span class="font-bold">$67,000</span>
</div>
<div class="flex justify-between text-lg mb-2">
<span>Target:</span>
<span class="font-bold">$340,000</span>
</div>
<div class="flex justify-between text-lg mb-2">
<span>Remaining:</span>
<span class="font-bold">$273,000</span>
</div>
</div>
<div class="progress-bar mb-6">
<div class="progress-fill" style="width: 19.7%"></div>
</div>
</div>
<div>
<h3 class="text-xl font-bold futuristic mb-4">Wallet Details</h3>
<div class="bg-gray-800 bg-opacity-30 rounded-xl p-4 mb-4">
<div class="flex items-center mb-2">
<i data-feather="credit-card" class="mr-2"></i>
<span class="text-sm">Network:</span>
<span class="ml-2 font-bold">Polygon USDT</span>
</div>
<div class="flex items-center">
<i data-feather="wallet" class="mr-2"></i>
<span class="text-sm">Wallet:</span>
<span class="ml-2 font-mono text-xs truncate">0xD790d67CCd166361c67DD9Fa627ce36175e6f1a3</span>
</div>
</div>
<button class="w-full py-3 rounded-lg gradient-bg text-white font-bold hover:opacity-90 transition duration-300 glow">
Copy Wallet Address
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto" data-aos="fade-up">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4 futuristic">Why Invest With Zentech</h2>
<div class="w-24 h-1 gradient-bg mx-auto rounded-full"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 text-center">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="shield" class="text-white w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold futuristic mb-2">Transparent Funding</h3>
<p class="text-gray-400">Blockchain-based funding with full transparency</p>
</div>
<div class="bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 text-center">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="dollar-sign" class="text-white w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold futuristic mb-2">Revenue Sharing</h3>
<p class="text-gray-400">Earn returns once targets are met</p>
</div>
<div class="bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 text-center">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="cpu" class="text-white w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold futuristic mb-2">AI + Web3</h3>
<p class="text-gray-400">Cutting-edge technology integration</p>
</div>
<div class="bg-gray-900 bg-opacity-50 border border-gray-800 rounded-2xl p-6 text-center">
<div class="w-16 h-16 gradient-bg rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="trending-up" class="text-white w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold futuristic mb-2">High-Demand</h3>
<p class="text-gray-400">Focused on growing market sectors</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 gradient-bg">
<div class="max-w-4xl mx-auto text-center" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold mb-6 futuristic">Your capital builds the future. Invest today.</h2>
<button class="px-8 py-4 rounded-xl bg-black bg-opacity-30 text-white font-bold border-2 border-white hover:bg-opacity-50 transition duration-300 glow">
Start Investing (Polygon USDT)
</button>
</div>
</section>
<!-- Footer -->
<footer class="bg-black bg-opacity-70 backdrop-blur-lg border-t border-gray-800 py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="md:col-span-2">
<h3 class="text-2xl font-bold futuristic mb-4 text-transparent bg-clip-text bg-gradient-to-r from-orange-500 to-purple-600">ZENTECH</h3>
<p class="text-gray-400 mb-4">Web3-powered incubator for innovative projects.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="github"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-bold futuristic mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#projects" class="text-gray-400 hover:text-white">Projects</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold futuristic mb-4">Contact</h4>
<div class="space-y-2">
<div class="flex items-center text-gray-400">
<i data-feather="twitter" class="mr-2"></i>
<span>@zentechowner</span>
</div>
<div class="flex items-center text-gray-400">
<i data-feather="mail" class="mr-2"></i>
<span>contact@zentech.io</span>
</div>
<div class="bg-gray-800 bg-opacity-30 rounded-lg p-3 mt-4">
<div class="text-xs text-gray-400 mb-1">Investment Wallet:</div>
<div class="font-mono text-xs truncate">0xD790d67CCd166361c67DD9Fa627ce36175e6f1a3</div>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500 text-sm">
© 2025 Zentech. All Rights Reserved.
</div>
</div>
</footer>
<script>
// Initialize Vanta.js
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0xff7a00,
color2: 0x8a2be2,
backgroundColor: 0x0a0a2a,
size: 0.8
});
// Initialize AOS
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
// Initialize Feather Icons
feather.replace();
</script>
</body>
</html>
|