Spaces:
Running
Running
File size: 60,164 Bytes
c07ad85 |
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 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TeleApp Studio | Telegram Mini-Apps & Bots Development</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=Inter:wght@300;400;500;600;700;800&display=swap');
:root {
--primary: #3b82f6;
--primary-dark: #2563eb;
--secondary: #8b5cf6;
--dark: #0F0F0F;
--darker: #070707;
--light: #f8fafc;
--neon-blue: #00f5ff;
--neon-purple: #b517ff;
--neon-green: #00ff9d;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--dark);
color: var(--light);
overflow-x: hidden;
scroll-behavior: smooth;
}
.hero-bg {
background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, rgba(15, 15, 15, 1) 70%);
position: relative;
overflow: hidden;
}
.grid-pattern {
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
}
.particle {
position: absolute;
background-color: rgba(59, 130, 246, 0.5);
border-radius: 50%;
pointer-events: none;
}
.glow-on-hover {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
z-index: 1;
}
.glow-on-hover::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg,
rgba(59, 130, 246, 0.5),
rgba(139, 92, 246, 0.5),
rgba(0, 245, 255, 0.5));
z-index: -1;
transform: scale(0);
opacity: 0;
transition: transform 0.5s, opacity 0.5s;
}
.glow-on-hover:hover::before {
transform: scale(1.1);
opacity: 1;
}
.service-card {
transition: all 0.4s ease;
background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.9));
border: 1px solid rgba(59, 130, 246, 0.1);
backdrop-filter: blur(10px);
transform-style: preserve-3d;
transform: perspective(1000px);
}
.service-card:hover {
transform: translateY(-10px) perspective(1000px) rotateX(5deg);
border-color: var(--neon-blue);
box-shadow: 0 10px 25px rgba(0, 245, 255, 0.2);
}
.tech-scroll-container {
overflow: hidden;
white-space: nowrap;
}
.tech-stack-item {
display: inline-block;
animation: scroll 25s linear infinite;
padding-left: 100%;
white-space: nowrap;
}
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.gradient-wave {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
position: relative;
overflow: hidden;
}
.gradient-wave::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
animation: wave 8s linear infinite;
}
@keyframes wave {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.portfolio-item {
transition: all 0.3s ease;
background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
transform-style: preserve-3d;
}
.portfolio-item:hover {
transform: scale(1.03) perspective(1000px) rotateY(5deg);
box-shadow: 0 10px 25px rgba(0, 245, 255, 0.15);
}
.portfolio-item::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
z-index: 1;
}
.neon-text {
text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
}
.neon-border {
border: 1px solid var(--neon-blue);
box-shadow: 0 0 10px var(--neon-blue);
}
.input-field {
background: rgba(30, 30, 30, 0.8);
border: 1px solid rgba(59, 130, 246, 0.3);
transition: all 0.3s ease;
}
.input-field:focus {
border-color: var(--neon-blue);
box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--dark);
}
::-webkit-scrollbar-thumb {
background: var(--primary);
border-radius: 4px;
}
/* Video modal */
.video-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 1000;
align-items: center;
justify-content: center;
}
.video-modal.open {
display: flex;
}
/* Micro animations */
.icon-hover {
transition: all 0.3s ease;
}
.icon-hover:hover {
transform: scale(1.1);
text-shadow: 0 0 8px currentColor;
}
/* Parallax effect for service cards */
.service-container {
perspective: 1000px;
}
/* Lazy loading */
.lazy {
opacity: 0;
transition: opacity 0.5s ease;
}
.lazy.loaded {
opacity: 1;
}
</style>
</head>
<body class="grid-pattern">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-black bg-opacity-90 backdrop-filter backdrop-blur-lg border-b border-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<div class="h-8 w-8 rounded-full bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center">
<i class="fab fa-telegram text-white"></i>
</div>
<span class="ml-2 text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500 neon-text">TeleApp</span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="#about" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:bg-gray-800 hover:bg-opacity-50">About</a>
<a href="#services" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:bg-gray-800 hover:bg-opacity-50">Services</a>
<a href="#portfolio" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:bg-gray-800 hover:bg-opacity-50">Portfolio</a>
<a href="#advantages" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-all duration-300 hover:bg-gray-800 hover:bg-opacity-50">Advantages</a>
<a href="#contact" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-2 rounded-md text-sm font-medium glow-on-hover transition-all duration-300 hover:from-blue-500 hover:to-purple-500">Contact Us</a>
</div>
</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" 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 bg-gray-900" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#about" class="text-gray-300 hover:bg-gray-800 hover:text-white block px-3 py-2 rounded-md text-base font-medium">About</a>
<a href="#services" class="text-gray-300 hover:bg-gray-800 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Services</a>
<a href="#portfolio" class="text-gray-300 hover:bg-gray-800 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Portfolio</a>
<a href="#advantages" class="text-gray-300 hover:bg-gray-800 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Advantages</a>
<a href="#contact" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white block px-3 py-2 rounded-md text-base font-medium">Contact Us</a>
</div>
</div>
</nav>
<!-- Video Modal -->
<div class="video-modal" id="video-modal">
<div class="relative w-full max-w-4xl px-4">
<button id="close-modal" class="absolute -top-12 right-0 text-white text-2xl hover:text-blue-400 transition-all">
<i class="fas fa-times"></i>
</button>
<div class="aspect-w-16 aspect-h-9 bg-black">
<iframe id="video-frame" class="w-full h-full" src="" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
<!-- Hero Section -->
<section class="hero-bg min-h-screen flex items-center justify-center relative overflow-hidden pt-16">
<!-- Animated particles background -->
<div id="particles-js"></div>
<!-- Hero content -->
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24 text-center z-10">
<div class="mb-8 opacity-0 animate-fade-in">
<div class="inline-block px-4 py-2 bg-blue-900 bg-opacity-20 text-blue-400 rounded-full text-sm font-medium mb-4">
<i class="fas fa-bolt mr-2"></i>
INNOVATIVE TELEGRAM SOLUTIONS
</div>
</div>
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight animate-fade-in">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500 inline-block">We Create Innovative</span><br>
<span class="bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-500 inline-block">Telegram Mini-Apps & Bots</span>
</h1>
<p class="text-lg md:text-xl text-gray-300 max-w-3xl mx-auto mb-10 animate-fade-in">
From P2E games to automated solutions — we bring any idea to life in the Telegram ecosystem and Web 3.0
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4 animate-fade-in-up">
<a href="#contact" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-8 py-4 rounded-lg font-semibold text-lg glow-on-hover hover:from-blue-500 hover:to-purple-500 transition-all duration-300 flex items-center justify-center">
<span>Discuss Your Project</span>
<i class="fas fa-arrow-right ml-2"></i>
</a>
<button id="watch-video" class="border border-white border-opacity-20 text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-white hover:bg-opacity-10 transition-all duration-300 flex items-center justify-center">
<i class="fas fa-play mr-2"></i>
Watch Video
</button>
</div>
<div class="mt-16 flex justify-center space-x-8 animate-fade-in">
<div class="flex items-center text-gray-400">
<div class="w-3 h-3 bg-green-500 rounded-full mr-2 animate-pulse"></div>
<span>Web 3.0 Integration</span>
</div>
<div class="flex items-center text-gray-400">
<div class="w-3 h-3 bg-blue-500 rounded-full mr-2 animate-pulse"></div>
<span>TON Blockchain</span>
</div>
<div class="flex items-center text-gray-400">
<div class="w-3 h-3 bg-purple-500 rounded-full mr-2 animate-pulse"></div>
<span>P2E Games</span>
</div>
</div>
</div>
<!-- Scroll indicator -->
<div class="absolute bottom-10 left-0 right-0 flex justify-center animate-bounce">
<a href="#about" class="text-gray-400 hover:text-white">
<svg xmlns="http://www.w3.org/2000/svg" class="h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 14l-7 7m0 0l-7-7m7 7V3" />
</svg>
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gradient-to-b from-gray-900 to-black">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">About Our Studio</span>
</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">
We are a team of experts turning your ideas into working digital products. Specializing in the Telegram ecosystem and Web 3.0 technologies.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mt-12">
<div class="fade-in service-card p-8 rounded-xl text-center" style="transition-delay: 0.1s">
<div class="w-20 h-20 bg-blue-900 bg-opacity-30 rounded-full flex items-center justify-center mx-auto mb-6 text-blue-400 text-3xl icon-hover">
<i class="fab fa-telegram"></i>
</div>
<h3 class="text-xl font-bold mb-3">Telegram Expertise</h3>
<p class="text-gray-400">
Deep knowledge of Telegram API, TON blockchain, and mini-apps development.
</p>
</div>
<div class="fade-in service-card p-8 rounded-xl text-center" style="transition-delay: 0.2s">
<div class="w-20 h-20 bg-purple-900 bg-opacity-30 rounded-full flex items-center justify-center mx-auto mb-6 text-purple-400 text-3xl icon-hover">
<i class="fas fa-gamepad"></i>
</div>
<h3 class="text-xl font-bold mb-3">P2E Games</h3>
<p class="text-gray-400">
Creating engaging Play-to-Earn games with blockchain integration.
</p>
</div>
<div class="fade-in service-card p-8 rounded-xl text-center" style="transition-delay: 0.3s">
<div class="w-20 h-20 bg-green-900 bg-opacity-30 rounded-full flex items-center justify-center mx-auto mb-6 text-green-400 text-3xl icon-hover">
<i class="fas fa-robot"></i>
</div>
<h3 class="text-xl font-bold mb-3">Smart Bots</h3>
<p class="text-gray-400">
Building intelligent bots for automation, payments, and customer service.
</p>
</div>
</div>
<div class="mt-16 grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div class="fade-in">
<div class="relative rounded-xl overflow-hidden">
<img src="https://images.unsplash.com/photo-1626785774573-4b799315345d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80"
alt="Development Team"
class="w-full h-auto object-cover lazy"
loading="lazy">
<div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-80"></div>
<div class="absolute bottom-0 left-0 right-0 p-6">
<div class="flex items-center">
<div class="flex -space-x-2">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/40.jpg" alt="Team member">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/42.jpg" alt="Team member">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/63.jpg" alt="Team member">
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/85.jpg" alt="Team member">
</div>
<span class="ml-4 text-white text-sm">Our core team</span>
</div>
</div>
</div>
</div>
<div class="fade-in">
<h3 class="text-2xl font-bold mb-4">Why Telegram Ecosystem?</h3>
<p class="text-gray-400 mb-6">
With over 800 million active users, Telegram provides a massive platform for innovative applications.
Our expertise in Telegram's API ecosystem allows us to create powerful solutions that leverage its unique features.
</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-900 bg-opacity-30 p-3 rounded-lg text-blue-400 mr-4 icon-hover">
<i class="fas fa-users"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Massive User Base</h4>
<p class="text-gray-400">Access to Telegram's huge and engaged audience.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-900 bg-opacity-30 p-3 rounded-lg text-purple-400 mr-4 icon-hover">
<i class="fas fa-shield-alt"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Security & Privacy</h4>
<p class="text-gray-400">Built-in encryption and privacy features.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-900 bg-opacity-30 p-3 rounded-lg text-green-400 mr-4 icon-hover">
<i class="fas fa-cube"></i>
</div>
<div>
<h4 class="font-semibold mb-1">TON Integration</h4>
<p class="text-gray-400">Native blockchain support for Web 3.0 applications.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-black">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">Our Services</span>
</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">
Comprehensive solutions for your Telegram-based projects
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="fade-in service-card p-8 rounded-xl" style="transition-delay: 0.1s">
<div class="flex items-start mb-6">
<div class="bg-blue-900 bg-opacity-30 p-3 rounded-lg text-blue-400 mr-4 icon-hover">
<i class="fas fa-mobile-alt text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Telegram Mini-Apps</h3>
<p class="text-gray-400">
Full-cycle development of interactive mini-applications within Telegram, from concept to deployment.
</p>
</div>
</div>
<ul class="space-y-2 text-gray-300">
<li class="flex items-center">
<i class="fas fa-check-circle text-blue-400 mr-2 icon-hover"></i>
P2E (Play-to-Earn) games with TON integration
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-blue-400 mr-2 icon-hover"></i>
Educational and entertainment apps
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-blue-400 mr-2 icon-hover"></i>
Custom UI/UX design for Telegram
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-blue-400 mr-2 icon-hover"></i>
Web3 wallet integration
</li>
</ul>
</div>
<div class="fade-in service-card p-8 rounded-xl" style="transition-delay: 0.2s">
<div class="flex items-start mb-6">
<div class="bg-purple-900 bg-opacity-30 p-3 rounded-lg text-purple-400 mr-4 icon-hover">
<i class="fas fa-robot text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Telegram Bots</h3>
<p class="text-gray-400">
Intelligent bot solutions to automate your business processes and enhance user engagement.
</p>
</div>
</div>
<ul class="space-y-2 text-gray-300">
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-400 mr-2 icon-hover"></i>
Payment and subscription bots
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-400 mr-2 icon-hover"></i>
CRM and customer support automation
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-400 mr-2 icon-hover"></i>
AI-powered conversational interfaces
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-purple-400 mr-2 icon-hover"></i>
Multi-language support
</li>
</ul>
</div>
<div class="fade-in service-card p-8 rounded-xl" style="transition-delay: 0.3s">
<div class="flex items-start mb-6">
<div class="bg-green-900 bg-opacity-30 p-3 rounded-lg text-green-400 mr-4 icon-hover">
<i class="fas fa-cubes text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Web3 Integration</h3>
<p class="text-gray-400">
Blockchain solutions tailored for the Telegram ecosystem.
</p>
</div>
</div>
<ul class="space-y-2 text-gray-300">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-400 mr-2 icon-hover"></i>
TON blockchain smart contracts
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-400 mr-2 icon-hover"></i>
NFT integration for games and apps
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-400 mr-2 icon-hover"></i>
Tokenomics design and implementation
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-400 mr-2 icon-hover"></i>
Decentralized identity solutions
</li>
</ul>
</div>
<div class="fade-in service-card p-8 rounded-xl" style="transition-delay: 0.4s">
<div class="flex items-start mb-6">
<div class="bg-yellow-900 bg-opacity-30 p-3 rounded-lg text-yellow-400 mr-4 icon-hover">
<i class="fas fa-tools text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold mb-2">Custom Solutions</h3>
<p class="text-gray-400">
Tailored development for your unique requirements.
</p>
</div>
</div>
<ul class="space-y-2 text-gray-300">
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-400 mr-2 icon-hover"></i>
API integration with external services
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-400 mr-2 icon-hover"></i>
Custom analytics and dashboards
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-400 mr-2 icon-hover"></i>
White-label solutions
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-400 mr-2 icon-hover"></i>
Ongoing support and maintenance
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 bg-gradient-to-b from-black to-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">Our Portfolio</span>
</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">
Some of our successful projects in the Telegram ecosystem
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 fade-in">
<div class="portfolio-item rounded-xl overflow-hidden relative">
<img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2232&q=80"
alt="Crypto Game"
class="w-full h-64 object-cover lazy"
loading="lazy">
<div class="absolute bottom-0 left-0 right-0 p-6 z-10">
<h3 class="text-xl font-bold mb-2">TON Treasure Hunt</h3>
<p class="text-gray-300 mb-3">P2E adventure game with 15K+ active users and NFT rewards</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-900 bg-opacity-50 text-blue-300 px-3 py-1 rounded-full text-xs">P2E</span>
<span class="bg-purple-900 bg-opacity-50 text-purple-300 px-3 py-1 rounded-full text-xs">TON</span>
<span class="bg-green-900 bg-opacity-50 text-green-300 px-3 py-1 rounded-full text-xs">NFT</span>
</div>
</div>
</div>
<div class="portfolio-item rounded-xl overflow-hidden relative">
<img src="https://images.unsplash.com/photo-1626785774573-4b799315345d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80"
alt="Payment Bot"
class="w-full h-64 object-cover lazy"
loading="lazy">
<div class="absolute bottom-0 left-0 right-0 p-6 z-10">
<h3 class="text-xl font-bold mb-2">PayBot Pro</h3>
<p class="text-gray-300 mb-3">Payment processing bot handling $500K+ monthly transactions</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-900 bg-opacity-50 text-blue-300 px-3 py-1 rounded-full text-xs">Payments</span>
<span class="bg-purple-900 bg-opacity-50 text-purple-300 px-3 py-1 rounded-full text-xs">Crypto</span>
<span class="bg-yellow-900 bg-opacity-50 text-yellow-300 px-3 py-1 rounded-full text-xs">Automation</span>
</div>
</div>
</div>
<div class="portfolio-item rounded-xl overflow-hidden relative">
<img src="https://images.unsplash.com/photo-1639762681494-07846d852205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80"
alt="Learning App"
class="w-full h-64 object-cover lazy"
loading="lazy">
<div class="absolute bottom-0 left-0 right-0 p-6 z-10">
<h3 class="text-xl font-bold mb-2">CryptoLearn Mini-App</h3>
<p class="text-gray-300 mb-3">Interactive educational platform with 8K+ monthly active learners</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-900 bg-opacity-50 text-blue-300 px-3 py-1 rounded-full text-xs">Education</span>
<span class="bg-green-900 bg-opacity-50 text-green-300 px-3 py-1 rounded-full text-xs">Web3</span>
<span class="bg-purple-900 bg-opacity-50 text-purple-300 px-3 py-1 rounded-full text-xs">Gamification</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12 fade-in">
<a href="#contact" class="inline-flex items-center px-6 py-3 border border-blue-400 text-blue-400 rounded-lg font-medium hover:bg-blue-900 hover:bg-opacity-20 transition-all duration-300 glow-on-hover">
Request Case Studies
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 ml-2" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 11H5a1 1 0 110-2h7.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</a>
</div>
</div>
</section>
<!-- Advantages Section -->
<section id="advantages" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">Why Choose Us</span>
</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">
Our competitive advantages that set us apart
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="fade-in service-card p-8 rounded-xl text-center" style="transition-delay: 0.1s">
<div class="w-16 h-16 bg-blue-900 bg-opacity-30 rounded-full flex items-center justify-center mx-auto mb-6 text-blue-400 text-2xl neon-text icon-hover">
<i class="fas fa-sliders-h"></i>
</div>
<h3 class="text-xl font-bold mb-3">Flexibility</h3>
<p class="text-gray-400">
Custom solutions tailored to your specific needs and business requirements.
</p>
</div>
<div class="fade-in service-card p-8 rounded-xl text-center" style="transition-delay: 0.2s">
<div class="w-16 h-16 bg-purple-900 bg-opacity-30 rounded-full flex items-center justify-center mx-auto mb-6 text-purple-400 text-2xl neon-text icon-hover">
<i class="fas fa-link"></i>
</div>
<h3 class="text-xl font-bold mb-3">Web 3.0 Integration</h3>
<p class="text-gray-400">
Seamless blockchain and cryptocurrency integration for future-proof solutions.
</p>
</div>
<div class="fade-in service-card p-8 rounded-xl text-center" style="transition-delay: 0.3s">
<div class="w-16 h-16 bg-green-900 bg-opacity-30 rounded-full flex items-center justify-center mx-auto mb-6 text-green-400 text-2xl neon-text icon-hover">
<i class="fas fa-key"></i>
</div>
<h3 class="text-xl font-bold mb-3">Turnkey Solutions</h3>
<p class="text-gray-400">
From concept to launch and beyond - we handle everything.
</p>
</div>
<div class="fade-in service-card p-8 rounded-xl text-center" style="transition-delay: 0.4s">
<div class="w-16 h-16 bg-yellow-900 bg-opacity-30 rounded-full flex items-center justify-center mx-auto mb-6 text-yellow-400 text-2xl neon-text icon-hover">
<i class="fas fa-headset"></i>
</div>
<h3 class="text-xl font-bold mb-3">Ongoing Support</h3>
<p class="text-gray-400">
Continuous updates, maintenance, and 24/7 technical support.
</p>
</div>
</div>
<div class="mt-16 grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
<div class="fade-in">
<h3 class="text-2xl font-bold mb-4">Our Development Process</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-900 bg-opacity-30 text-blue-400 rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mt-1 mr-4 icon-hover">
1
</div>
<div>
<h4 class="font-semibold mb-1">Discovery & Planning</h4>
<p class="text-gray-400">We analyze your requirements and create a detailed project roadmap.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-900 bg-opacity-30 text-purple-400 rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mt-1 mr-4 icon-hover">
2
</div>
<div>
<h4 class="font-semibold mb-1">Design & Prototyping</h4>
<p class="text-gray-400">We design the user interface and create interactive prototypes.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-900 bg-opacity-30 text-green-400 rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mt-1 mr-4 icon-hover">
3
</div>
<div>
<h4 class="font-semibold mb-1">Development</h4>
<p class="text-gray-400">We implement the solution with clean, maintainable code.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-yellow-900 bg-opacity-30 text-yellow-400 rounded-full w-8 h-8 flex items-center justify-center flex-shrink-0 mt-1 mr-4 icon-hover">
4
</div>
<div>
<h4 class="font-semibold mb-1">Testing & Launch</h4>
<p class="text-gray-400">We thoroughly test everything and launch your product.</p>
</div>
</div>
</div>
</div>
<div class="fade-in">
<div class="bg-gray-800 bg-opacity-50 rounded-xl p-8 border border-gray-700">
<div class="flex items-center mb-6">
<div class="bg-blue-900 bg-opacity-30 p-3 rounded-lg text-blue-400 mr-4 icon-hover">
<i class="fas fa-chart-line text-2xl"></i>
</div>
<h3 class="text-xl font-bold">Our Results</h3>
</div>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span class="text-gray-400">Client Satisfaction</span>
<span class="text-blue-400 font-semibold">98%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-blue-500 h-2 rounded-full" style="width: 98%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="text-gray-400">Projects Delivered</span>
<span class="text-purple-400 font-semibold">120+</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-purple-500 h-2 rounded-full" style="width: 100%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span class="text-gray-400">Active Users</span>
<span class="text-green-400 font-semibold">1.5M+</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 95%"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="contact" class="py-20 gradient-wave">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-4xl font-bold mb-4">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">Ready to Launch Your Telegram Project?</span>
</h2>
<div class="w-20 h-1 bg-gradient-to-r from-blue-500 to-purple-600 mx-auto mb-6"></div>
<p class="text-lg text-gray-300 max-w-3xl mx-auto">
Get in touch with our team to discuss your idea and get a free consultation.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="fade-in">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-300 mb-1">Your Name</label>
<input type="text" id="name" class="input-field w-full px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-300 mb-1">Email Address</label>
<input type="email" id="email" class="input-field w-full px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<label for="project" class="block text-sm font-medium text-gray-300 mb-1">Project Type</label>
<select id="project" class="input-field w-full px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
<option value="">Select project type</option>
<option value="mini-app">Telegram Mini-App</option>
<option value="bot">Telegram Bot</option>
<option value="p2e">P2E Game</option>
<option value="web3">Web3 Integration</option>
<option value="other">Other</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-300 mb-1">Project Details</label>
<textarea id="message" rows="4" class="input-field w-full px-4 py-3 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<div>
<button type="submit" class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-4 rounded-lg font-semibold text-lg glow-on-hover hover:from-blue-500 hover:to-purple-500 transition-all duration-300">
Submit Your Request
</button>
</div>
</form>
</div>
<div class="fade-in">
<div class="bg-black bg-opacity-40 rounded-xl p-8 h-full border border-gray-700">
<h3 class="text-xl font-bold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-900 bg-opacity-30 p-3 rounded-lg text-blue-400 mr-4 icon-hover">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Email Us</h4>
<a href="mailto:contact@teleapp.dev" class="text-blue-400 hover:text-blue-300 transition-colors">contact@teleapp.dev</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-900 bg-opacity-30 p-3 rounded-lg text-purple-400 mr-4 icon-hover">
<i class="fab fa-telegram"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Telegram</h4>
<a href="https://t.me/teleapp_support" class="text-purple-400 hover:text-purple-300 transition-colors">@teleapp_support</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-900 bg-opacity-30 p-3 rounded-lg text-green-400 mr-4 icon-hover">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-semibold mb-1">Location</h4>
<p class="text-gray-400">Remote team worldwide with HQ in Berlin</p>
</div>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-700">
<h4 class="font-semibold mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-800 bg-opacity-40 p-3 rounded-full text-gray-300 hover:text-blue-400 transition-colors icon-hover">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-800 bg-opacity-40 p-3 rounded-full text-gray-300 hover:text-purple-400 transition-colors icon-hover">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-800 bg-opacity-40 p-3 rounded-full text-gray-300 hover:text-white transition-colors icon-hover">
<i class="fab fa-github"></i>
</a>
<a href="#" class="bg-gray-800 bg-opacity-40 p-3 rounded-full text-gray-300 hover:text-pink-500 transition-colors icon-hover">
<i class="fab fa-dribbble"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black border-t border-gray-800 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="tech-scroll-container mb-12 overflow-hidden">
<div class="tech-stack-item inline-block">
<div class="inline-flex items-center space-x-12 px-4 text-gray-400">
<span class="text-lg font-mono">Telegram API</span>
<span class="text-lg font-mono">TON Blockchain</span>
<span class="text-lg font-mono">Solidity</span>
<span class="text-lg font-mono">Node.js</span>
<span class="text-lg font-mono">React.js</span>
<span class="text-lg font-mono">Vue.js</span>
<span class="text-lg font-mono">Web3.js</span>
<span class="text-lg font-mono">TailwindCSS</span>
<span class="text-lg font-mono">PostgreSQL</span>
<span class="text-lg font-mono">Docker</span>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center mb-4">
<div class="h-8 w-8 rounded-full bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center">
<i class="fab fa-telegram text-white"></i>
</div>
<span class="ml-2 text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">TeleApp</span>
</div>
<p class="text-gray-400 text-sm">
Creating innovative Telegram solutions that drive engagement and revenue.
</p>
</div>
<div>
<h3 class="text-lg font-semibold text-white mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Telegram Mini-Apps</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Telegram Bots</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">P2E Games</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Web3 Integration</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold text-white mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#about" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">About Us</a></li>
<li><a href="#portfolio" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Portfolio</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold text-white mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-blue-400 transition-colors text-sm">Cookie Policy</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
<p>© 2023 TeleApp Studio. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Video modal
const videoModal = document.getElementById('video-modal');
const watchVideoBtn = document.getElementById('watch-video');
const closeModalBtn = document.getElementById('close-modal');
const videoFrame = document.getElementById('video-frame');
watchVideoBtn.addEventListener('click', function() {
videoModal.classList.add('open');
videoFrame.src = "https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1"; // Replace with your video
document.body.style.overflow = 'hidden';
});
closeModalBtn.addEventListener('click', function() {
videoModal.classList.remove('open');
videoFrame.src = "";
document.body.style.overflow = '';
});
// Scroll animation
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInOnScroll = function() {
fadeElements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const elementVisible = 150;
if (elementTop < window.innerHeight - elementVisible) {
element.classList.add('visible');
}
});
};
window.addEventListener('scroll', fadeInOnScroll);
window.addEventListener('load', fadeInOnScroll);
// Initial check on load
fadeInOnScroll();
// Lazy loading images
const lazyImages = document.querySelectorAll('.lazy');
const lazyLoad = function() {
lazyImages.forEach(img => {
if (img.getBoundingClientRect().top < window.innerHeight && img.getBoundingClientRect().bottom > 0) {
img.classList.add('loaded');
}
});
};
window.addEventListener('scroll', lazyLoad);
window.addEventListener('load', lazyLoad);
// Initial load check
lazyLoad();
// Simple particles for Hero section
const particlesContainer = document.querySelector('.hero-bg');
function createParticles() {
if (particlesContainer) {
for (let i = 0; i < 30; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random size between 2px and 6px
const size = Math.random() * 4 + 2;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random position
particle.style.left = `${Math.random() * 100}%`;
particle.style.top = `${Math.random() * 100}%`;
// Random animation
particle.style.animation = `float ${Math.random() * 10 + 10}s linear infinite`;
// Add to container
particlesContainer.appendChild(particle);
// Add random opacity
particle.style.opacity = Math.random() * 0.3;
// Add CSS animation
const keyframes = `
@keyframes float {
0% {
transform: translate(0, 0) rotate(0deg);
}
100% {
transform: translate(${Math.random() * 200 - 100}px, ${Math.random() * 200 - 100}px) rotate(360deg);
}
}
`;
const style = document.createElement('style');
style.innerHTML = keyframes;
document.head.appendChild(style);
}
}
}
createParticles();
</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 <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body>
</html> |