Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Tiny Teams - Simple Team Chat</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> | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #EC4899 100%); | |
| } | |
| .chat-bubble { | |
| position: relative; | |
| border-radius: 1rem; | |
| } | |
| .chat-bubble:after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -8px; | |
| left: 20px; | |
| border-width: 10px 10px 0; | |
| border-style: solid; | |
| border-color: white transparent; | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .floating { | |
| animation: floating 3s ease-in-out infinite; | |
| } | |
| @keyframes floating { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-10px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans antialiased text-gray-900"> | |
| <!-- Header --> | |
| <header class="gradient-bg text-white"> | |
| <div class="container mx-auto px-6 py-12"> | |
| <nav class="flex items-center justify-between"> | |
| <div class="flex items-center space-x-2"> | |
| <div class="w-8 h-8 bg-white rounded-lg flex items-center justify-center"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-indigo-600" viewBox="0 0 20 20" fill="currentColor"> | |
| <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-6-3a2 2 0 11-4 0 2 2 0 014 0zm-2 4a5 5 0 00-4.546 2.916A5.986 5.986 0 0010 16a5.986 5.986 0 004.546-2.084A5 5 0 0010 11z" clip-rule="evenodd" /> | |
| </svg> | |
| </div> | |
| <span class="text-xl font-bold">Tiny Teams</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#" class="hover:text-indigo-200">Features</a> | |
| <a href="#" class="hover:text-indigo-200">Pricing</a> | |
| <a href="#" class="hover:text-indigo-200">Blog</a> | |
| <a href="#" class="hover:text-indigo-200">Support</a> | |
| </div> | |
| <div class="flex items-center space-x-4"> | |
| <a href="#" class="hidden md:block px-4 py-2 rounded-lg bg-white text-indigo-600 font-medium hover:bg-indigo-50 transition">Sign In</a> | |
| <a href="#" class="px-4 py-2 rounded-lg bg-indigo-700 text-white font-medium hover:bg-indigo-600 transition">Get Started</a> | |
| </div> | |
| </nav> | |
| <div class="mt-24 md:mt-32 text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold leading-tight">Simple team chat <br>for small teams</h1> | |
| <p class="mt-6 text-xl md:text-2xl text-indigo-100 max-w-3xl mx-auto"> | |
| Tiny Teams helps small teams communicate better without the complexity of enterprise tools. | |
| </p> | |
| <div class="mt-10 flex flex-col sm:flex-row justify-center gap-4"> | |
| <a href="#" class="px-8 py-4 bg-white text-indigo-600 font-bold rounded-lg hover:bg-indigo-50 transition">Try for free</a> | |
| <a href="#" class="px-8 py-4 bg-transparent border-2 border-white text-white font-bold rounded-lg hover:bg-white hover:bg-opacity-10 transition">Watch demo</a> | |
| </div> | |
| </div> | |
| <div class="mt-20 relative"> | |
| <div class="max-w-4xl mx-auto bg-white rounded-2xl shadow-2xl overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1579389083078-4e7018379f7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Tiny Teams app screenshot" class="w-full h-auto"> | |
| </div> | |
| <div class="absolute -bottom-6 left-1/2 transform -translate-x-1/2 bg-white px-6 py-3 rounded-full shadow-lg flex items-center space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| <span class="text-sm font-medium">Live demo</span> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Clients --> | |
| <section class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <p class="text-center text-gray-500 mb-10">Trusted by teams at</p> | |
| <div class="flex flex-wrap justify-center items-center gap-12 md:gap-20 opacity-70"> | |
| <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/React-icon.svg/1280px-React-icon.svg.png" alt="React" class="h-8"> | |
| <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Tailwind_CSS_Logo.svg/1024px-Tailwind_CSS_Logo.svg.png" alt="Tailwind CSS" class="h-6"> | |
| <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Laravel.svg/1200px-Laravel.svg.png" alt="Laravel" class="h-8"> | |
| <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/Vue.js_Logo_2.svg/1200px-Vue.js_Logo_2.svg.png" alt="Vue.js" class="h-8"> | |
| <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/Npm-logo.svg/1280px-Npm-logo.svg.png" alt="npm" class="h-8"> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center max-w-2xl mx-auto"> | |
| <h2 class="text-3xl md:text-4xl font-bold">Everything your team needs</h2> | |
| <p class="mt-4 text-lg text-gray-500"> | |
| Tiny Teams packs all essential communication features into one simple package. | |
| </p> | |
| </div> | |
| <div class="mt-16 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="w-14 h-14 rounded-lg gradient-bg flex items-center justify-center text-white mb-6"> | |
| <i class="fas fa-comments text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Real-time chat</h3> | |
| <p class="text-gray-500"> | |
| Instantly message your team members with our lightning-fast chat interface. | |
| </p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="w-14 h-14 rounded-lg gradient-bg flex items-center justify-center text-white mb-6"> | |
| <i class="fas fa-folder-open text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">File sharing</h3> | |
| <p class="text-gray-500"> | |
| Share documents, images, and files with your team with just a few clicks. | |
| </p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="w-14 h-14 rounded-lg gradient-bg flex items-center justify-center text-white mb-6"> | |
| <i class="fas fa-video text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Video calls</h3> | |
| <p class="text-gray-500"> | |
| Crystal clear video calls with screen sharing for remote collaboration. | |
| </p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="w-14 h-14 rounded-lg gradient-bg flex items-center justify-center text-white mb-6"> | |
| <i class="fas fa-search text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Powerful search</h3> | |
| <p class="text-gray-500"> | |
| Find any message or file instantly with our advanced search capabilities. | |
| </p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="w-14 h-14 rounded-lg gradient-bg flex items-center justify-center text-white mb-6"> | |
| <i class="fas fa-mobile-alt text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Mobile apps</h3> | |
| <p class="text-gray-500"> | |
| Stay connected on the go with our iOS and Android mobile applications. | |
| </p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="w-14 h-14 rounded-lg gradient-bg flex items-center justify-center text-white mb-6"> | |
| <i class="fas fa-shield-alt text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">End-to-end encryption</h3> | |
| <p class="text-gray-500"> | |
| Your conversations are private and secure with military-grade encryption. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Demo --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col lg:flex-row items-center"> | |
| <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Simple, intuitive interface</h2> | |
| <p class="text-lg text-gray-500 mb-8"> | |
| Tiny Teams is designed to be easy to use from day one. No training required - just start chatting! | |
| </p> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 rounded-full gradient-bg flex items-center justify-center text-white"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="font-bold">Organized conversations</h4> | |
| <p class="text-gray-500 mt-1"> | |
| Keep your team discussions organized in channels or direct messages. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 rounded-full gradient-bg flex items-center justify-center text-white"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="font-bold">Quick reactions</h4> | |
| <p class="text-gray-500 mt-1"> | |
| React to messages with emojis to keep conversations light and fun. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 mt-1"> | |
| <div class="w-8 h-8 rounded-full gradient-bg flex items-center justify-center text-white"> | |
| <i class="fas fa-check"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="font-bold">Custom notifications</h4> | |
| <p class="text-gray-500 mt-1"> | |
| Set custom notification preferences for each conversation. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="lg:w-1/2 relative"> | |
| <div class="bg-white rounded-2xl shadow-xl overflow-hidden floating"> | |
| <div class="p-4 bg-gray-100 flex items-center"> | |
| <div class="flex space-x-2"> | |
| <div class="w-3 h-3 rounded-full bg-red-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
| <div class="w-3 h-3 rounded-full bg-green-500"></div> | |
| </div> | |
| <div class="ml-4 text-sm text-gray-500">Tiny Teams - #general</div> | |
| </div> | |
| <div class="p-4"> | |
| <div class="flex mb-4"> | |
| <div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center text-indigo-600 font-bold">JD</div> | |
| <div class="ml-3"> | |
| <div class="font-bold">John Doe</div> | |
| <div class="text-sm text-gray-500">Today at 2:45 PM</div> | |
| </div> | |
| </div> | |
| <div class="chat-bubble bg-white p-4 shadow-sm mb-4"> | |
| <p>Hey team! Just wanted to share that we've reached 10,000 users! 🎉</p> | |
| </div> | |
| <div class="flex mb-4"> | |
| <div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center text-purple-600 font-bold">AS</div> | |
| <div class="ml-3"> | |
| <div class="font-bold">Alice Smith</div> | |
| <div class="text-sm text-gray-500">Today at 2:47 PM</div> | |
| </div> | |
| </div> | |
| <div class="chat-bubble bg-white p-4 shadow-sm mb-4"> | |
| <p>That's amazing news! All our hard work is paying off. When do we celebrate? 🍕</p> | |
| </div> | |
| <div class="flex"> | |
| <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 font-bold">MJ</div> | |
| <div class="ml-3"> | |
| <div class="font-bold">Mike Johnson</div> | |
| <div class="text-sm text-gray-500">Today at 2:49 PM</div> | |
| </div> | |
| </div> | |
| <div class="chat-bubble bg-white p-4 shadow-sm"> | |
| <p>How about Friday after work? I'll bring the drinks! 🍻</p> | |
| </div> | |
| <div class="mt-6 border-t pt-4 flex items-center"> | |
| <input type="text" placeholder="Message #general" class="flex-1 px-4 py-2 rounded-full border focus:outline-none focus:ring-2 focus:ring-indigo-500"> | |
| <button class="ml-2 w-10 h-10 rounded-full gradient-bg text-white flex items-center justify-center"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing --> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center max-w-2xl mx-auto"> | |
| <h2 class="text-3xl md:text-4xl font-bold">Simple, transparent pricing</h2> | |
| <p class="mt-4 text-lg text-gray-500"> | |
| Pay per user and get all features. No hidden fees, no surprises. | |
| </p> | |
| </div> | |
| <div class="mt-16 max-w-4xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <!-- Free Plan --> | |
| <div class="bg-white rounded-xl shadow-lg overflow-hidden border border-gray-200"> | |
| <div class="p-8"> | |
| <h3 class="text-2xl font-bold mb-2">Free</h3> | |
| <p class="text-gray-500 mb-6">Perfect for trying out Tiny Teams</p> | |
| <div class="mb-8"> | |
| <span class="text-4xl font-bold">$0</span> | |
| <span class="text-gray-500">/user/month</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>Up to 10 team members</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>10GB file storage</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>Basic support</span> | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times text-gray-300 mr-3"></i> | |
| <span>No video calls</span> | |
| </li> | |
| <li class="flex items-center text-gray-400"> | |
| <i class="fas fa-times text-gray-300 mr-3"></i> | |
| <span>No priority support</span> | |
| </li> | |
| </ul> | |
| <button class="w-full py-3 px-6 rounded-lg border-2 border-indigo-600 text-indigo-600 font-medium hover:bg-indigo-50 transition">Get started</button> | |
| </div> | |
| </div> | |
| <!-- Pro Plan --> | |
| <div class="bg-white rounded-xl shadow-xl overflow-hidden border-2 border-indigo-600 relative"> | |
| <div class="absolute top-0 right-0 bg-indigo-600 text-white px-4 py-1 text-sm font-medium rounded-bl-lg">Popular</div> | |
| <div class="p-8"> | |
| <h3 class="text-2xl font-bold mb-2">Pro</h3> | |
| <p class="text-gray-500 mb-6">For growing teams that need more</p> | |
| <div class="mb-8"> | |
| <span class="text-4xl font-bold">$8</span> | |
| <span class="text-gray-500">/user/month</span> | |
| </div> | |
| <ul class="space-y-3 mb-8"> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>Unlimited team members</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>100GB file storage</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>Priority support</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>Video calls & screen sharing</span> | |
| </li> | |
| <li class="flex items-center"> | |
| <i class="fas fa-check text-green-500 mr-3"></i> | |
| <span>Advanced analytics</span> | |
| </li> | |
| </ul> | |
| <button class="w-full py-3 px-6 rounded-lg gradient-bg text-white font-medium hover:opacity-90 transition">Get started</button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 text-center text-gray-500"> | |
| <p>Need enterprise features? <a href="#" class="text-indigo-600 hover:underline">Contact our sales team</a></p> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA --> | |
| <section class="py-20 gradient-bg text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to simplify your team communication?</h2> | |
| <p class="text-xl text-indigo-100 max-w-2xl mx-auto mb-10"> | |
| Join thousands of teams who are communicating better with Tiny Teams. | |
| </p> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <a href="#" class="px-8 py-4 bg-white text-indigo-600 font-bold rounded-lg hover:bg-indigo-50 transition">Get started for free</a> | |
| <a href="#" class="px-8 py-4 bg-transparent border-2 border-white text-white font-bold rounded-lg hover:bg-white hover:bg-opacity-10 transition">Contact sales</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-16"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-12"> | |
| <div class="lg:col-span-2"> | |
| <div class="flex items-center space-x-2 mb-6"> | |
| <div class="w-8 h-8 bg-white rounded-lg flex items-center justify-center"> | |
| <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 text-indigo-600" viewBox="0 0 20 20" fill="currentColor"> | |
| <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-6-3a2 2 0 11-4 0 2 2 0 014 0zm-2 4a5 5 0 00-4.546 2.916A5.986 5.986 0 0010 16a5.986 5.986 0 004.546-2.084A5 5 0 0010 11z" clip-rule="evenodd" /> | |
| </svg> | |
| </div> | |
| <span class="text-xl font-bold">Tiny Teams</span> | |
| </div> | |
| <p class="text-gray-400 mb-6"> | |
| Simple team chat for small teams who want to communicate better without the complexity. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-gray-700 transition"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Product</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Integrations</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Updates</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Company</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Support</h4> | |
| <ul class="space-y-3"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Status</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-16 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 Tiny Teams. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Terms</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Privacy</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Cookies</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Simple animation for demo purposes | |
| document.addEventListener('DOMContentLoaded', function() { | |
| // Add floating animation to feature cards on hover | |
| const featureCards = document.querySelectorAll('.feature-card'); | |
| featureCards.forEach(card => { | |
| card.addEventListener('mouseenter', () => { | |
| card.classList.add('transform', 'transition', 'duration-300'); | |
| }); | |
| card.addEventListener('mouseleave', () => { | |
| card.classList.remove('transform', 'transition', 'duration-300'); | |
| }); | |
| }); | |
| // Smooth scroll for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| }); | |
| </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=amylixing/tinyteamtools" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |