Spaces:
Running
Running
<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> |