Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>NexusAI - Your Intelligent Digital Companion</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> | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .floating { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%); | |
| } | |
| .chat-bubble { | |
| border-radius: 20px; | |
| position: relative; | |
| max-width: 80%; | |
| } | |
| .chat-bubble:after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| width: 0; | |
| height: 0; | |
| border: 10px solid transparent; | |
| } | |
| .user-bubble { | |
| background-color: #4f46e5; | |
| color: white; | |
| margin-left: auto; | |
| } | |
| .user-bubble:after { | |
| right: -10px; | |
| border-left-color: #4f46e5; | |
| border-right: 0; | |
| } | |
| .ai-bubble { | |
| background-color: #f3f4f6; | |
| color: #111827; | |
| margin-right: auto; | |
| } | |
| .ai-bubble:after { | |
| left: -10px; | |
| border-right-color: #f3f4f6; | |
| border-left: 0; | |
| } | |
| .typing-indicator span { | |
| display: inline-block; | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| background-color: #9ca3af; | |
| margin: 0 2px; | |
| } | |
| .typing-indicator span:nth-child(1) { | |
| animation: bounce 1s infinite; | |
| } | |
| .typing-indicator span:nth-child(2) { | |
| animation: bounce 1s infinite 0.2s; | |
| } | |
| .typing-indicator span:nth-child(3) { | |
| animation: bounce 1s infinite 0.4s; | |
| } | |
| @keyframes bounce { | |
| 0%, 100% { transform: translateY(0); } | |
| 50% { transform: translateY(-5px); } | |
| } | |
| .glow { | |
| box-shadow: 0 0 15px rgba(167, 119, 227, 0.5); | |
| } | |
| .pulse { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { transform: scale(1); } | |
| 50% { transform: scale(1.05); } | |
| 100% { transform: scale(1); } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50 font-sans"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <i class="fas fa-brain text-indigo-600 text-2xl mr-2"></i> | |
| <span class="text-xl font-bold text-gray-900">NexusAI</span> | |
| </div> | |
| <div class="hidden sm:ml-6 sm:flex sm:space-x-8"> | |
| <a href="index.html" class="border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a> | |
| <a href="features.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Features</a> | |
| <a href="pricing.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Pricing</a> | |
| <a href="about.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">About</a> | |
| </div> | |
| </div> | |
| <div class="hidden sm:ml-6 sm:flex sm:items-center"> | |
| <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium">Get Started</button> | |
| </div> | |
| <div class="-mr-2 flex items-center sm:hidden"> | |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false"> | |
| <span class="sr-only">Open main menu</span> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu, show/hide based on menu state. --> | |
| <div class="sm:hidden hidden" id="mobile-menu"> | |
| <div class="pt-2 pb-3 space-y-1"> | |
| <a href="index.html" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a> | |
| <a href="features.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Features</a> | |
| <a href="pricing.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Pricing</a> | |
| <a href="about.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">About</a> | |
| <div class="mt-4 pl-3"> | |
| <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium w-full">Get Started</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div class="gradient-bg text-white"> | |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl"> | |
| The Future of AI Interaction | |
| </h1> | |
| <p class="mt-6 max-w-lg mx-auto text-xl"> | |
| NexusAI combines multiple AI systems to provide you with the most comprehensive and intelligent digital assistant. | |
| </p> | |
| <div class="mt-10 flex justify-center space-x-4"> | |
| <button class="bg-white text-indigo-600 px-6 py-3 rounded-md text-lg font-medium hover:bg-gray-100 transition duration-150 ease-in-out"> | |
| Try it now | |
| </button> | |
| <button class="bg-indigo-800 text-white px-6 py-3 rounded-md text-lg font-medium hover:bg-indigo-700 transition duration-150 ease-in-out"> | |
| Learn more | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- AI Agent Section --> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16"> | |
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> | |
| <div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left"> | |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> | |
| Meet Nova, Your AI Companion | |
| </h2> | |
| <p class="mt-3 text-lg text-gray-500"> | |
| Nova is powered by multiple AI systems working together to provide you with accurate, contextual, and human-like responses to all your queries. | |
| </p> | |
| <div class="mt-8"> | |
| <div class="inline-flex rounded-md shadow"> | |
| <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700"> | |
| Start Conversation | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center"> | |
| <div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md"> | |
| <!-- AI Chat Interface --> | |
| <div class="bg-white rounded-lg overflow-hidden"> | |
| <!-- Chat Header --> | |
| <div class="bg-indigo-600 px-4 py-3 flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <div class="h-10 w-10 rounded-full bg-indigo-400 flex items-center justify-center"> | |
| <i class="fas fa-robot text-white"></i> | |
| </div> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm font-medium text-white">Nova</p> | |
| <div class="flex items-center"> | |
| <span class="h-2 w-2 rounded-full bg-green-400"></span> | |
| <span class="ml-1 text-xs text-indigo-200">Online</span> | |
| </div> | |
| </div> | |
| <div class="ml-auto flex space-x-3"> | |
| <button class="text-indigo-200 hover:text-white"> | |
| <i class="fas fa-ellipsis-v"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Chat Messages --> | |
| <div class="h-96 overflow-y-auto p-4 space-y-3" id="chat-messages"> | |
| <div class="chat-bubble ai-bubble p-3"> | |
| <p>Hello! I'm Nova, your AI assistant. How can I help you today?</p> | |
| </div> | |
| <div class="chat-bubble user-bubble p-3"> | |
| <p>Hi Nova! What can you do for me?</p> | |
| </div> | |
| <div class="chat-bubble ai-bubble p-3"> | |
| <p>I can answer questions, help with research, generate creative content, analyze data, and much more! I combine knowledge from multiple AI systems to give you the best possible answers.</p> | |
| </div> | |
| <div class="typing-indicator flex items-center p-3" id="typing-indicator" style="display: none;"> | |
| <span></span> | |
| <span></span> | |
| <span></span> | |
| </div> | |
| </div> | |
| <!-- Chat Input --> | |
| <div class="border-t border-gray-200 px-4 py-3"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <button class="text-gray-400 hover:text-gray-500"> | |
| <i class="fas fa-paperclip"></i> | |
| </button> | |
| </div> | |
| <div class="ml-3 flex-1"> | |
| <input type="text" id="chat-input" class="block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm" placeholder="Type your message..."> | |
| </div> | |
| <div class="ml-3 flex-shrink-0"> | |
| <button id="send-button" class="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| <i class="fas fa-paper-plane"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Features Section --> | |
| <div class="bg-gray-100 py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Features</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| A better way to interact with AI | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
| NexusAI combines the best of multiple AI systems to give you unparalleled assistance. | |
| </p> | |
| </div> | |
| <div class="mt-20"> | |
| <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-3 md:gap-x-8 md:gap-y-10"> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="absolute -top-6 left-6 h-12 w-12 rounded-full bg-indigo-500 flex items-center justify-center text-white"> | |
| <i class="fas fa-brain text-xl"></i> | |
| </div> | |
| <h3 class="mt-8 text-lg font-medium text-gray-900">Multi-AI Integration</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Combines knowledge from multiple AI systems to provide comprehensive and accurate responses. | |
| </p> | |
| </div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="absolute -top-6 left-6 h-12 w-12 rounded-full bg-indigo-500 flex items-center justify-center text-white"> | |
| <i class="fas fa-comments text-xl"></i> | |
| </div> | |
| <h3 class="mt-8 text-lg font-medium text-gray-900">Natural Conversations</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Engages in human-like dialogue with contextual understanding and memory. | |
| </p> | |
| </div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="absolute -top-6 left-6 h-12 w-12 rounded-full bg-indigo-500 flex items-center justify-center text-white"> | |
| <i class="fas fa-lightbulb text-xl"></i> | |
| </div> | |
| <h3 class="mt-8 text-lg font-medium text-gray-900">Creative Generation</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Writes, designs, and brainstorms ideas to help with your creative projects. | |
| </p> | |
| </div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="absolute -top-6 left-6 h-12 w-12 rounded-full bg-indigo-500 flex items-center justify-center text-white"> | |
| <i class="fas fa-chart-line text-xl"></i> | |
| </div> | |
| <h3 class="mt-8 text-lg font-medium text-gray-900">Data Analysis</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Processes and interprets complex data to provide meaningful insights. | |
| </p> | |
| </div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="absolute -top-6 left-6 h-12 w-12 rounded-full bg-indigo-500 flex items-center justify-center text-white"> | |
| <i class="fas fa-globe text-xl"></i> | |
| </div> | |
| <h3 class="mt-8 text-lg font-medium text-gray-900">Web Integration</h3> | |
| <p class="mt-2 text-base text-gray-500"> | |
| Can fetch and process information from the web when needed. | |
| </p> | |
| </div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition duration-300"> | |
| <div class="absolute -top-6 left-6 h-12 w-12 rounded-full bg-indigo-500 flex items-center justify-center text-white"> | |
| <i class="fas fa-shield-alt text-xl"></ | |
| <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=FerryMahler/nexusai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |