Spaces:
Running
Running
File size: 39,170 Bytes
b7a749a 6a03857 b7a749a 6a03857 b7a749a 6a03857 b7a749a 6a03857 b7a749a 6a03857 b7a749a 6a03857 b7a749a |
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 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Futures Coffee™ - Distributorship</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f9f9f9;
}
.hero-gradient {
background: linear-gradient(135deg, #6F4E37 0%, #3E2723 100%);
}
.coffee-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 50%;
bottom: -20px;
transform: translateX(-50%);
width: 2px;
height: 20px;
background-color: #6F4E37;
}
.animated-arrow {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<img class="h-8 w-auto" src="https://via.placeholder.com/150x50?text=Futures+Coffee" alt="Futures Coffee Logo">
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#about" class="text-gray-900 hover:text-amber-800 px-3 py-2 text-sm font-medium">About</a>
<a href="#business" class="text-gray-900 hover:text-amber-800 px-3 py-2 text-sm font-medium">Business Plan</a>
<a href="#distributorship" class="text-gray-900 hover:text-amber-800 px-3 py-2 text-sm font-medium">Distributorship</a>
<a href="#contact" class="text-gray-900 hover:text-amber-800 px-3 py-2 text-sm font-medium">Contact</a>
<a href="https://unspent.cash/s?q=eJwrWylyaVnZtW%2FM97s0VlRNndu%2BzSr7v2p8xxoAsXQNbw%3D%3D" class="ml-8 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-amber-800 hover:bg-amber-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-amber-500">
Invest Now
</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-amber-500" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-800 hover:bg-gray-50">About</a>
<a href="#business" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-800 hover:bg-gray-50">Business Plan</a>
<a href="#distributorship" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-800 hover:bg-gray-50">Distributorship</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-900 hover:text-amber-800 hover:bg-gray-50">Contact</a>
<a href="https://unspent.cash/s?q=eJwrWylyaVnZtW%2FM97s0VlRNndu%2BzSr7v2p8xxoAsXQNbw%3D%3D" class="block px-3 py-2 text-base font-medium text-amber-800 hover:text-amber-700 hover:bg-gray-50">Invest Now</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-gradient text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-extrabold tracking-tight">
<span class="block">Join the</span>
<span class="block text-amber-300">Futures Coffee™</span>
<span class="block">Distributorship</span>
</h1>
<p class="mt-6 max-w-lg mx-auto text-xl">
Be part of the next generation coffee revolution. Sustainable, convenient, and tech-driven.
</p>
<div class="mt-10">
<div class="inline-flex rounded-md shadow">
<a href="#distributorship" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-amber-900 bg-amber-300 hover:bg-amber-400 md:py-4 md:text-lg md:px-10">
Learn More
</a>
</div>
<div class="ml-3 inline-flex">
<a href="https://unspent.cash/s?q=eJwrWylyaVnZtW%2FM97s0VlRNndu%2BzSr7v2p8xxoAsXQNbw%3D%3D" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-amber-800 hover:bg-amber-700 md:py-4 md:text-lg md:px-10">
Invest Now
</a>
</div>
</div>
<div class="mt-16 animated-arrow">
<a href="#about" class="text-white">
<svg class="w-10 h-10 mx-auto" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- About Section -->
<div id="about" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-amber-600 font-semibold tracking-wide uppercase">About Futures Coffee™</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Revolutionizing Coffee Consumption
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
A Los Angeles-based coffee brand offering, high-quality coffee delivered directly to customers through a drop-shipping model.
</p>
</div>
<div class="mt-20">
<div class="grid grid-cols-1 gap-12 md:grid-cols-3">
<div class="text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-amber-100 text-amber-600 mx-auto">
<i class="fas fa-bolt text-xl"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-gray-900">Convenience</h3>
<p class="mt-2 text-base text-gray-500">
Delivered to your door through our efficient drop-shipping model.
</p>
</div>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-amber-100 text-amber-600 mx-auto">
<i class="fas fa-leaf text-xl"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-gray-900">Sustainability</h3>
<p class="mt-2 text-base text-gray-500">
Eco-friendly, recyclable, and biodegradable packaging materials.
</p>
</div>
</div>
<div class="text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-amber-100 text-amber-600 mx-auto">
<i class="fas fa-laptop-code text-xl"></i>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-gray-900">Tech-Driven</h3>
<p class="mt-2 text-base text-gray-500">
User-friendly website, mobile app, and Telegram bot for seamless ordering.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Business Plan Section -->
<div id="business" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-amber-600 font-semibold tracking-wide uppercase">Business Plan</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Our Strategic Approach
</p>
</div>
<div class="mt-16">
<!-- Timeline -->
<div class="relative">
<div class="grid grid-cols-1 md:grid-cols-5 gap-8">
<!-- Item 1 -->
<div class="timeline-item relative text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-amber-600 text-white mx-auto">
<span class="text-xl font-bold">1</span>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Executive Summary</h3>
<p class="mt-2 text-base text-gray-500">
Tech-driven, coffee brand targeting Gen X, Y, and Z with convenience and sustainability.
</p>
</div>
<!-- Item 2 -->
<div class="timeline-item relative text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-amber-600 text-white mx-auto">
<span class="text-xl font-bold">2</span>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Market Analysis</h3>
<p class="mt-2 text-base text-gray-500">
$48.2B U.S. coffee market by 2025 with demand for convenient, premium options.
</p>
</div>
<!-- Item 3 -->
<div class="timeline-item relative text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-amber-600 text-white mx-auto">
<span class="text-xl font-bold">3</span>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Marketing Strategy</h3>
<p class="mt-2 text-base text-gray-500">
Social media, influencer marketing, and targeted ads to reach our audience.
</p>
</div>
<!-- Item 4 -->
<div class="timeline-item relative text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-amber-600 text-white mx-auto">
<span class="text-xl font-bold">4</span>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Operations</h3>
<p class="mt-2 text-base text-gray-500">
Ethical sourcing, eco-friendly packaging, and efficient drop-shipping model.
</p>
</div>
<!-- Item 5 -->
<div class="timeline-item relative text-center">
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-amber-600 text-white mx-auto">
<span class="text-xl font-bold">5</span>
</div>
<h3 class="mt-4 text-lg font-medium text-gray-900">Financials</h3>
<p class="mt-2 text-base text-gray-500">
Currently earning 1.04% monthly through our innovative Perpetuity Contract.
</p>
</div>
</div>
</div>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-2">
<div class="bg-white overflow-hidden shadow rounded-lg">
<div class="px-4 py-5 sm:p-6">
<h3 class="text-lg leading-6 font-medium text-gray-900">Mission</h3>
<div class="mt-2 max-w-xl text-sm text-gray-500">
<p>To provide a convenient, sustainable, and personalized coffee experience for our customers.</p>
</div>
</div>
</div>
<div class="bg-white overflow-hidden shadow rounded-lg">
<div class="px-4 py-5 sm:p-6">
<h3 class="text-lg leading-6 font-medium text-gray-900">Vision</h3>
<div class="mt-2 max-w-xl text-sm text-gray-500">
<p>To become the leading tech-driven, single-serve coffee brand, recognized for its quality, innovation, and eco-consciousness.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Distributorship Section -->
<div id="distributorship" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-amber-600 font-semibold tracking-wide uppercase">Distributorship</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Join Our Network
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Become part of the Futures Coffee™ revolution and benefit from our innovative business model.
</p>
</div>
<div class="mt-12 grid gap-8 md:grid-cols-3">
<!-- Card 1 -->
<div class="coffee-card transition-all duration-300 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-6 py-8">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-amber-100 text-amber-600">
<i class="fas fa-store text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Retail Distribution</h3>
<p class="mt-2 text-base text-gray-500">
Stock Futures Coffee™ products in your retail location and benefit from our marketing support.
</p>
<div class="mt-6">
<ul class="space-y-3">
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">Exclusive territory rights</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">Marketing materials provided</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">Competitive wholesale pricing</p>
</li>
</ul>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="coffee-card transition-all duration-300 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-6 py-8">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-amber-100 text-amber-600">
<i class="fas fa-truck text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Online Reselling</h3>
<p class="mt-2 text-base text-gray-500">
Sell Futures Coffee™ through your e-commerce platform with our drop-shipping support.
</p>
<div class="mt-6">
<ul class="space-y-3">
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">No inventory needed</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">API integration available</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">Branded storefront options</p>
</li>
</ul>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="coffee-card transition-all duration-300 bg-white rounded-lg shadow-lg overflow-hidden">
<div class="px-6 py-8">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-amber-100 text-amber-600">
<i class="fas fa-coins text-xl"></i>
</div>
<h3 class="mt-6 text-lg font-medium text-gray-900">Investment Opportunity</h3>
<p class="mt-2 text-base text-gray-500">
Invest in Futures Coffee™ through our innovative Perpetuity Contract.
</p>
<div class="mt-6">
<ul class="space-y-3">
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">1.04% monthly returns</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">11.8% annual returns</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-amber-500"></i>
</div>
<p class="ml-3 text-sm text-gray-600">Early investor benefits</p>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="mt-12 bg-amber-50 rounded-lg shadow-md overflow-hidden">
<div class="px-6 py-8 md:flex md:items-center md:justify-between">
<div class="md:w-2/3">
<h3 class="text-lg font-medium text-amber-900">Ready to join the Futures Coffee™ network?</h3>
<p class="mt-2 text-sm text-amber-800">
Fill out our distributor application form to get started. Our team will review your application and get back to you within 48 hours.
</p>
</div>
<div class="mt-4 md:mt-0 md:ml-8">
<a href="#contact" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-amber-600 hover:bg-amber-700">
Apply Now
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Financial Section -->
<div class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-amber-600 font-semibold tracking-wide uppercase">Financial Projections</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Investment Opportunity
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Futures Coffee™ offers innovative financial instruments for investors.
</p>
</div>
<div class="mt-12 grid gap-8 md:grid-cols-2">
<div class="bg-white overflow-hidden shadow rounded-lg">
<div class="px-4 py-5 sm:p-6">
<h3 class="text-lg leading-6 font-medium text-gray-900">Perpetuity Contract</h3>
<div class="mt-4">
<div class="flex items-center">
<div class="flex-shrink-0 bg-amber-100 rounded-md p-3">
<i class="fas fa-chart-line text-amber-600 text-xl"></i>
</div>
<div class="ml-4">
<p class="text-sm font-medium text-gray-500">Current Monthly Return</p>
<p class="text-2xl font-semibold text-gray-900">1.04%</p>
</div>
</div>
<div class="mt-6 flex items-center">
<div class="flex-shrink-0 bg-amber-100 rounded-md p-3">
<i class="fas fa-calendar-alt text-amber-600 text-xl"></i>
</div>
<div class="ml-4">
<p class="text-sm font-medium text-gray-500">Projected Annual Return</p>
<p class="text-2xl font-semibold text-gray-900">11.8%</p>
</div>
</div>
</div>
<div class="mt-6">
<a href="https://unspent.cash/s?q=eJwrWylyaVnZtW%2FM97s0VlRNndu%2BzSr7v2p8xxoAsXQNbw%3D%3D" class="inline-flex items-center justify-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-amber-600 hover:bg-amber-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-amber-500">
View Contract
</a>
</div>
</div>
</div>
<div class="bg-white overflow-hidden shadow rounded-lg">
<div class="px-4 py-5 sm:p-6">
<h3 class="text-lg leading-6 font-medium text-gray-900">Disclaimer</h3>
<div class="mt-4 text-sm text-gray-500">
<p>The Perpetuity Contract is a new innovative platform and may have substantial risks associated with its strategy. Any donations contributed are not tax deductible, non refundable and the one time or recurring donation(s) should be viewed with a potential for complete loss.</p>
</div>
<div class="mt-6">
<h4 class="text-md font-medium text-gray-900">Future Plans</h4>
<p class="mt-2 text-sm text-gray-500">
Futures Coffee Cash Token via decentralized exchanges that utilize cash tokens.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact Section -->
<div id="contact" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:text-center">
<h2 class="text-base text-amber-600 font-semibold tracking-wide uppercase">Contact Us</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
Get In Touch
</p>
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
Interested in becoming a distributor or investor? Reach out to our team.
</p>
</div>
<div class="mt-12">
<div class="bg-white shadow-xl rounded-lg overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-amber-50 p-8">
<h3 class="text-lg font-medium text-amber-900">Distributorship Inquiries</h3>
<p class="mt-4 text-sm text-amber-800">
Fill out the form to apply to become a Futures Coffee™ distributor. Our team will review your application and get back to you within 48 hours.
</p>
<div class="mt-8">
<div class="flex items-center">
<div class="flex-shrink-0 bg-amber-100 rounded-md p-2">
<i class="fas fa-envelope text-amber-600"></i>
</div>
<div class="ml-3 text-sm text-amber-800">
<p></p>
</div>
</div>
<div class="mt-4 flex items-center">
<div class="flex-shrink-0 bg-amber-100 rounded-md p-2">
<i class="fas fa-phone-alt text-amber-600"></i>
</div>
<div class="ml-3 text-sm text-amber-800">
<p>+</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 p-8">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Full Name</label>
<div class="mt-1">
<input type="text" name="name" id="name" autocomplete="name" class="py-3 px-4 block w-full shadow-sm focus:ring-amber-500 focus:border-amber-500 border-gray-300 rounded-md">
</div>
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
<div class="mt-1">
<input type="email" name="email" id="email" autocomplete="email" class="py-3 px-4 block w-full shadow-sm focus:ring-amber-500 focus:border-amber-500 border-gray-300 rounded-md">
</div>
</div>
<div>
<label for="phone" class="block text-sm font-medium text-gray-700">Phone</label>
<div class="mt-1">
<input type="tel" name="phone" id="phone" autocomplete="tel" class="py-3 px-4 block w-full shadow-sm focus:ring-amber-500 focus:border-amber-500 border-gray-300 rounded-md">
</div>
</div>
<div>
<label for="interest" class="block text-sm font-medium text-gray-700">Interest</label>
<div class="mt-1">
<select id="interest" name="interest" class="py-3 px-4 block w-full shadow-sm focus:ring-amber-500 focus:border-amber-500 border-gray-300 rounded-md">
<option>Retail Distribution</option>
<option>Online Reselling</option>
<option>Investment Opportunity</option>
<option>Other</option>
</select>
</div>
</div>
<div>
<button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-amber-600 hover:bg-amber-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-amber-500">
Submit Application
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-900">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
<div>
<h3 class="text-sm font-semibold text-amber-400 tracking-wider uppercase">About</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Company</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Team</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-amber-400 tracking-wider uppercase">Business</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Distributorship</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Investors</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Perpetuity Contract</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-amber-400 tracking-wider uppercase">Resources</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">FAQ</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Support</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-amber-400 tracking-wider uppercase">Connect</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-300 hover:text-white">Instagram</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Twitter</a></li>
<li><a href="#" class="text-base text-gray-300 hover:text-white">Telegram</a></li>
</ul>
</div>
</div>
<div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between">
<p class="text-base text-gray-400">
© 2025 Futures Coffee™. All rights reserved.
</p>
<div class="mt-4 md:mt-0 flex space-x-6">
<a href="#" class="text-gray-400 hover:text-gray-300">
<span class="sr-only">Privacy Policy</span>
Privacy
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<span class="sr-only">Terms of Service</span>
Terms
</a>
<a href="#" class="text-gray-400 hover:text-gray-300">
<span class="sr-only">Disclaimer</span>
Disclaimer
</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
if (menu.classList.contains('hidden')) {
menu.classList.remove('hidden');
} else {
menu.classList.add('hidden');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Form submission
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
// Here you would typically send the form data to your server
// For demo purposes, we'll just show an alert
alert('Thank you for your application! We will contact you shortly.');
this.reset();
});
}
</script>
<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=privateuserh/privfut" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |