File size: 46,066 Bytes
e6ffea3 | 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 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Tycoons Club | Innovate. Connect. Grow.</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;
scroll-behavior: smooth;
}
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-hover:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.nav-link::after {
content: '';
display: block;
width: 0;
height: 2px;
background: #4f46e5;
transition: width .3s;
}
.nav-link:hover::after {
width: 100%;
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm fixed w-full 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://tech-tycoons-club.web.app/static/media/logo.0c2c2e5f.png" alt="Tech Tycoons Club">
<span class="ml-2 text-xl font-bold text-indigo-600">Tech Tycoons</span>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Home</a>
<a href="#about" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a>
<a href="#events" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Events</a>
<a href="#team" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Team</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Contact</a>
<a href="#" class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">Join Now</a>
</div>
<div class="md:hidden flex items-center">
<button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Home</a>
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">About</a>
<a href="#events" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Events</a>
<a href="#team" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Team</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600 hover:bg-gray-50">Contact</a>
<a href="#" class="block w-full px-3 py-2 text-base font-medium text-center text-white bg-indigo-600 rounded-md hover:bg-indigo-700">Join Now</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center justify-between">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Innovate. Connect. Grow with <span class="text-yellow-300">Tech Tycoons</span></h1>
<p class="text-lg md:text-xl mb-8 opacity-90">Join our community of tech enthusiasts, entrepreneurs, and innovators shaping the future of technology.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-md text-lg font-semibold hover:bg-gray-100 transition duration-300 text-center">Join Our Community</a>
<a href="#events" class="border-2 border-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-white hover:text-indigo-600 transition duration-300 text-center">Explore Events</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://tech-tycoons-club.web.app/static/media/hero-img.2b3c7c5e.png" alt="Tech Community" class="w-full max-w-md animate-float">
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<div class="text-4xl font-bold text-indigo-600 mb-2">500+</div>
<div class="text-gray-600">Members</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-indigo-600 mb-2">50+</div>
<div class="text-gray-600">Events</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-indigo-600 mb-2">20+</div>
<div class="text-gray-600">Workshops</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold text-indigo-600 mb-2">10+</div>
<div class="text-gray-600">Partners</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">About Tech Tycoons</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="md:flex items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<img src="https://tech-tycoons-club.web.app/static/media/about-img.3b1a2a0e.png" alt="About Tech Tycoons" class="rounded-lg shadow-xl w-full">
</div>
<div class="md:w-1/2">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Empowering the Next Generation of Tech Leaders</h3>
<p class="text-gray-600 mb-6">Tech Tycoons Club is a vibrant community of technology enthusiasts, innovators, and entrepreneurs dedicated to fostering growth, collaboration, and innovation in the tech industry.</p>
<p class="text-gray-600 mb-6">Our mission is to create a platform where members can connect, learn, and grow together through workshops, networking events, hackathons, and mentorship programs.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-indigo-100 text-indigo-600">
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
</div>
<p class="ml-3 text-gray-600">Hands-on workshops with industry experts</p>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-indigo-100 text-indigo-600">
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
</div>
<p class="ml-3 text-gray-600">Networking opportunities with tech professionals</p>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-indigo-100 text-indigo-600">
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"></path>
</svg>
</div>
</div>
<p class="ml-3 text-gray-600">Access to exclusive resources and mentorship</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Events Section -->
<section id="events" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Upcoming Events</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Event 1 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 card-hover">
<div class="relative">
<img src="https://tech-tycoons-club.web.app/static/media/event1.3b1a2a0e.png" alt="Tech Conference" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-indigo-600 text-white px-3 py-1 rounded-full text-sm font-semibold">Upcoming</div>
</div>
<div class="p-6">
<div class="flex items-center text-gray-500 text-sm mb-2">
<svg class="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
<span>June 15, 2023</span>
<svg class="h-4 w-4 ml-3 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>10:00 AM - 4:00 PM</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Annual Tech Conference</h3>
<p class="text-gray-600 mb-4">Join us for our flagship event featuring keynote speakers, panel discussions, and networking opportunities with industry leaders.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-indigo-600">
<svg class="h-5 w-5 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
<span>Convention Center</span>
</div>
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-800">Register →</a>
</div>
</div>
</div>
<!-- Event 2 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 card-hover">
<div class="relative">
<img src="https://tech-tycoons-club.web.app/static/media/event2.3b1a2a0e.png" alt="Hackathon" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-indigo-600 text-white px-3 py-1 rounded-full text-sm font-semibold">Upcoming</div>
</div>
<div class="p-6">
<div class="flex items-center text-gray-500 text-sm mb-2">
<svg class="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
<span>July 8-9, 2023</span>
<svg class="h-4 w-4 ml-3 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>24 Hours</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Innovation Hackathon</h3>
<p class="text-gray-600 mb-4">A 24-hour coding marathon where teams compete to build innovative solutions to real-world problems.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-indigo-600">
<svg class="h-5 w-5 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
<span>Tech Hub</span>
</div>
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-800">Register →</a>
</div>
</div>
</div>
<!-- Event 3 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition duration-500 card-hover">
<div class="relative">
<img src="https://tech-tycoons-club.web.app/static/media/event3.3b1a2a0e.png" alt="Workshop" class="w-full h-48 object-cover">
<div class="absolute top-4 right-4 bg-indigo-600 text-white px-3 py-1 rounded-full text-sm font-semibold">Upcoming</div>
</div>
<div class="p-6">
<div class="flex items-center text-gray-500 text-sm mb-2">
<svg class="h-4 w-4 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
<span>August 12, 2023</span>
<svg class="h-4 w-4 ml-3 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>2:00 PM - 5:00 PM</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">AI & Machine Learning Workshop</h3>
<p class="text-gray-600 mb-4">Learn the fundamentals of AI and machine learning from industry experts with hands-on exercises.</p>
<div class="flex justify-between items-center">
<div class="flex items-center text-indigo-600">
<svg class="h-5 w-5 mr-1" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"></path>
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"></path>
</svg>
<span>Innovation Lab</span>
</div>
<a href="#" class="text-indigo-600 font-medium hover:text-indigo-800">Register →</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 transition duration-300">
View All Events
<svg class="ml-2 h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Meet Our Team</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8">
<!-- Team Member 1 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-500 card-hover">
<img src="https://tech-tycoons-club.web.app/static/media/team1.3b1a2a0e.png" alt="Team Member" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-1">John Smith</h3>
<p class="text-indigo-600 mb-3">Founder & CEO</p>
<p class="text-gray-600 text-sm">Tech entrepreneur with 15+ years of experience in software development and business strategy.</p>
<div class="flex mt-4 space-x-4">
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fas fa-globe"></i>
</a>
</div>
</div>
</div>
<!-- Team Member 2 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-500 card-hover">
<img src="https://tech-tycoons-club.web.app/static/media/team2.3b1a2a0e.png" alt="Team Member" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-1">Sarah Johnson</h3>
<p class="text-indigo-600 mb-3">Director of Operations</p>
<p class="text-gray-600 text-sm">Community builder with expertise in event planning and organizational development.</p>
<div class="flex mt-4 space-x-4">
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fas fa-globe"></i>
</a>
</div>
</div>
</div>
<!-- Team Member 3 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-500 card-hover">
<img src="https://tech-tycoons-club.web.app/static/media/team3.3b1a2a0e.png" alt="Team Member" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-1">Michael Chen</h3>
<p class="text-indigo-600 mb-3">Tech Lead</p>
<p class="text-gray-600 text-sm">Full-stack developer specializing in AI and cloud computing solutions.</p>
<div class="flex mt-4 space-x-4">
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fas fa-globe"></i>
</a>
</div>
</div>
</div>
<!-- Team Member 4 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-500 card-hover">
<img src="https://tech-tycoons-club.web.app/static/media/team4.3b1a2a0e.png" alt="Team Member" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold text-gray-800 mb-1">Emily Rodriguez</h3>
<p class="text-indigo-600 mb-3">Marketing Director</p>
<p class="text-gray-600 text-sm">Digital marketing expert with a passion for tech community engagement.</p>
<div class="flex mt-4 space-x-4">
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-500 hover:text-indigo-600">
<i class="fas fa-globe"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Members Say</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-8 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="Testimonial">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Jessica Thompson</h4>
<p class="text-indigo-600">Software Engineer</p>
</div>
</div>
<p class="text-gray-600 italic">"Tech Tycoons has been instrumental in my career growth. The workshops and networking events have connected me with mentors and opportunities I wouldn't have found elsewhere."</p>
<div class="mt-4 flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-8 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/45.jpg" alt="Testimonial">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">David Wilson</h4>
<p class="text-indigo-600">Startup Founder</p>
</div>
</div>
<p class="text-gray-600 italic">"The community at Tech Tycoons is unmatched. I've found co-founders, investors, and lifelong friends through this organization. It's more than just a club—it's a family."</p>
<div class="mt-4 flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-8 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="Testimonial">
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Maria Garcia</h4>
<p class="text-indigo-600">UX Designer</p>
</div>
</div>
<p class="text-gray-600 italic">"As someone transitioning into tech from another field, Tech Tycoons provided the resources and support I needed to make a successful career change."</p>
<div class="mt-4 flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Join Our Tech Community?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto">Become part of a growing network of tech professionals, entrepreneurs, and innovators.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-indigo-600 px-8 py-3 rounded-md text-lg font-semibold hover:bg-gray-100 transition duration-300">Join Now</a>
<a href="#" class="border-2 border-white px-8 py-3 rounded-md text-lg font-semibold hover:bg-white hover:text-indigo-600 transition duration-300">Learn More</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Contact Us</h2>
<div class="w-20 h-1 bg-indigo-600 mx-auto"></div>
</div>
<div class="md:flex">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Get In Touch</h3>
<p class="text-gray-600 mb-8">Have questions about our community or upcoming events? Reach out to us and we'll get back to you as soon as possible.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100 text-indigo-600">
<i class="fas fa-map-marker-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Address</h4>
<p class="text-gray-600">123 Tech Street, Innovation District, San Francisco, CA 94107</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100 text-indigo-600">
<i class="fas fa-envelope"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Email</h4>
<p class="text-gray-600">info@techtycoons.com</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100 text-indigo-600">
<i class="fas fa-phone-alt"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-800">Phone</h4>
<p class="text-gray-600">(415) 555-0123</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="text-lg font-medium text-gray-800 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="h-10 w-10 rounded-full bg-gray-100 flex items-center justify-center text-gray-600 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Full Name</label>
<input type="text" id="name" name="name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email Address</label>
<input type="email" id="email" name="email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div>
<label for="subject" class="block text-sm font-medium text-gray-700">Subject</label>
<input type="text" id="subject" name="subject" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700">Message</label>
<textarea id="message" name="message" rows="4" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-indigo-500 focus:border-indigo-500"></textarea>
</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-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition duration-300">
Send Message
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-12 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:flex items-center justify-between bg-white rounded-lg shadow-md p-8">
<div class="mb-6 md:mb-0">
<h3 class="text-2xl font-bold text-gray-800 mb-2">Subscribe to Our Newsletter</h3>
<p class="text-gray-600">Stay updated with our latest events, workshops, and tech news.</p>
</div>
<form class="flex flex-col sm:flex-row gap-4">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500">
<button type="submit" class="px-6 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700 transition duration-300 font-medium">Subscribe</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-12 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-lg font-semibold mb-4">Tech Tycoons</h3>
<p class="text-gray-400">Empowering the next generation of tech leaders through community, education, and innovation.</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
<li><a href="#events" class="text-gray-400 hover:text-white transition duration-300">Events</a></li>
<li><a href="#team" class="text-gray-400 hover:text-white transition duration-300">Team</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Events</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Upcoming Events</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Past Events</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Workshops</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Hackathons</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Networking</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Connect</h3>
<div class="flex space-x-4 mb-4">
<a href="#" class="h-8 w-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="h-8 w-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="h-8 w-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="h-8 w-8 rounded-full bg-gray-800 flex items-center justify-center text-gray-300 hover:bg-indigo-600 hover:text-white transition duration-300">
<i class="fab fa-instagram"></i>
</a>
</div>
<p class="text-gray-400">info@techtycoons.com</p>
<p class="text-gray-400">(415) 555-0123</p>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 Tech Tycoons Club. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm transition duration-300">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 bg-indigo-600 text-white p-3 rounded-full shadow-lg opacity-0 invisible transition-all duration-300 hover:bg-indigo-700">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 10l7-7m0 0l7 7m-7-7v18"></path>
</svg>
</button>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Back to top button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('opacity-0', 'invisible');
backToTopButton.classList.add('opacity-100', 'visible');
} else {
backToTopButton.classList.remove('opacity-100', 'visible');
backToTopButton.classList.add('opacity-0', 'invisible');
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// 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) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</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=Soiler/tt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |