| <!DOCTYPE html> |
| <html lang="en" class="dark"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Your Team of Virtual Agents, Managed With You</title> |
| <link rel="icon" type="image/x-icon" href="https://static.photos/technology/200x200/42"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script> |
| tailwind.config = { |
| darkMode: 'class', |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 100: '#ecfdf5', |
| 500: '#10b981', |
| 900: '#064e3b' |
| }, |
| secondary: { |
| 100: '#f5f3ff', |
| 500: '#8b5cf6', |
| 900: '#4c1d95' |
| }, |
| dark: { |
| 800: '#0B0F14', |
| 900: '#10151B' |
| }, |
| success: { |
| 500: '#10b981' |
| } |
| }, |
| fontFamily: { |
| sans: ['Inter', 'sans-serif'], |
| display: ['Neue Haas Grotesk', 'sans-serif'] |
| } |
| } |
| } |
| } |
| </script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
| |
| .glass-panel { |
| backdrop-filter: blur(16px); |
| background: rgba(16, 21, 27, 0.7); |
| border: 1px solid rgba(255, 255, 255, 0.08); |
| } |
| |
| .agent-card { |
| transition: all 0.3s ease; |
| } |
| |
| .agent-card:hover { |
| transform: translateY(-2px); |
| box-shadow: 0 10px 25px -5px rgba(63, 242, 140, 0.1); |
| } |
| |
| .pulse-active { |
| animation: pulse 2s infinite; |
| } |
| |
| @keyframes pulse { |
| 0% { box-shadow: 0 0 0 0 rgba(63, 242, 140, 0.4); } |
| 70% { box-shadow: 0 0 0 10px rgba(63, 242, 140, 0); } |
| 100% { box-shadow: 0 0 0 0 rgba(63, 242, 140, 0); } |
| } |
| .progress-bar { |
| background: #0ea5e9; |
| } |
| .timeline-item:not(:last-child)::after { |
| content: ''; |
| position: absolute; |
| left: 8px; |
| top: 24px; |
| height: calc(100% - 24px); |
| width: 2px; |
| background: rgba(255, 255, 255, 0.1); |
| } |
| </style> |
| </head> |
| <body class="bg-dark-900 text-gray-200 font-sans min-h-screen overflow-x-hidden" id="vanta-bg"> |
| |
| <script> |
| VANTA.GLOBE({ |
| el: "#vanta-bg", |
| mouseControls: true, |
| touchControls: true, |
| gyroControls: false, |
| minHeight: 200.00, |
| minWidth: 200.00, |
| scale: 1.00, |
| scaleMobile: 1.00, |
| color: "#3FF28C", |
| backgroundColor: "#10151B", |
| size: 0.8 |
| }) |
| </script> |
|
|
| |
| <div class="container mx-auto px-4 py-8 max-w-7xl"> |
| |
| <header class="flex justify-between items-center mb-12"> |
| <div class="flex items-center space-x-2"> |
| <img src="https://static.photos/technology/200x200/42" alt="VAgents Logo" class="w-10 h-10 rounded-lg"> |
| <h1 class="text-2xl font-bold text-primary-500">VAI</h1> |
| </div> |
| <nav class="hidden md:flex space-x-6"> |
| <a href="dashboard.html" class="hover:text-primary-500 transition">Dashboard</a> |
| <a href="agents.html" class="hover:text-primary-500 transition">Agents</a> |
| <a href="integrations.html" class="hover:text-primary-500 transition">Integrations</a> |
| <a href="#" class="hover:text-primary-500 transition">Community</a> |
| </nav> |
| <div class="flex items-center space-x-4"> |
| <button class="p-2 rounded-full bg-dark-800 hover:bg-dark-700 transition"> |
| <i data-feather="settings"></i> |
| </button> |
| <button onclick="window.location.href='onboarding.html'" class="px-4 py-2 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition flex items-center space-x-2"> |
| <i data-feather="user"></i> |
| <span>Get Started</span> |
| </button> |
| </div> |
| </header> |
|
|
| |
| <section class="mb-16 glass-panel rounded-2xl p-8 relative overflow-hidden"> |
| <div class="absolute inset-0 bg-gradient-to-r from-dark-900/80 to-dark-900/30 z-0"></div> |
| <div class="relative z-10"> |
| <h2 class="text-4xl md:text-5xl font-bold mb-4 max-w-2xl"> |
| <span class="text-primary-500">Your Digital Executive Team</span> |
| </h2> |
| <p class="text-lg text-gray-300 mb-8 max-w-2xl"> |
| Lead your team of specialist agents - each a micro-expert in their domain. Orchestrate your digital executives like a visionary CEO. |
| </p> |
| <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> |
| <button onclick="window.location.href='onboarding.html'" class="px-6 py-3 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition"> |
| Get Started - It's Free |
| </button> |
| <button class="px-6 py-3 border border-primary-500 text-primary-500 hover:bg-primary-500/10 rounded-lg font-medium transition flex items-center space-x-2"> |
| <i data-feather="play-circle"></i> |
| <span>Watch Demo</span> |
| </button> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="mb-16"> |
| <div class="flex justify-between items-center mb-8"> |
| <h3 class="text-2xl font-bold">Your Active Agents</h3> |
| <div class="flex space-x-2"> |
| <button class="p-2 rounded-lg bg-dark-800 hover:bg-dark-700 transition"> |
| <i data-feather="grid"></i> |
| </button> |
| <button class="p-2 rounded-lg bg-dark-800 hover:bg-dark-700 transition"> |
| <i data-feather="list"></i> |
| </button> |
| <button class="p-2 rounded-lg bg-dark-800 hover:bg-dark-700 transition"> |
| <i data-feather="filter"></i> |
| </button> |
| </div> |
| </div> |
| <div class="grid grid-cols-1 gap-6" id="agents-dashboard"> |
| |
| <div class="agent-card glass-panel rounded-xl p-6 border border-secondary-500/50 transition pulse-active"> |
| <div class="flex justify-between items-start mb-4"> |
| <div class="flex items-center space-x-4"> |
| <div class="relative"> |
| <div class="w-12 h-12 rounded-full bg-gradient-to-br from-secondary-500 to-yellow-500 flex items-center justify-center"> |
| <i data-feather="alert-circle" class="text-dark-900"></i> |
| </div> |
| <img src="https://static.photos/technology/200x200/43" alt="Grok" class="w-5 h-5 rounded-full absolute -bottom-1 -right-1 border-2 border-dark-900"> |
| </div> |
| <div> |
| <h4 class="font-medium">Investor Relations</h4> |
| <span class="text-xs text-secondary-500 flex items-center"> |
| <span class="w-2 h-2 rounded-full bg-secondary-500 mr-1"></span> |
| Requires Attention |
| </span> |
| </div> |
| </div> |
| <div class="flex items-center space-x-2"> |
| <span class="text-xs bg-secondary-500/20 text-secondary-500 px-2 py-1 rounded">High Priority</span> |
| <button class="text-gray-400 hover:text-secondary-500 transition"> |
| <i data-feather="more-vertical"></i> |
| </button> |
| </div> |
| </div> |
| <p class="text-sm text-gray-300 mb-4">3 new investment opportunities need your review</p> |
| <div class="flex justify-between text-sm mb-4"> |
| <div> |
| <span class="text-gray-400">Time Saved</span> |
| <p class="font-medium">2.5 hours</p> |
| </div> |
| <div> |
| <span class="text-gray-400">Tasks Completed</span> |
| <p class="font-medium">7/10</p> |
| </div> |
| </div> |
| <div class="h-2 bg-gray-800 rounded-full mb-2 overflow-hidden"> |
| <div class="bg-secondary-500 h-full rounded-full w-3/4"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4"> |
| |
| <div class="agent-card glass-panel rounded-xl p-4 border border-gray-700 hover:border-primary-500/30 transition"> |
| <div class="flex justify-between items-start mb-3"> |
| <div class="flex items-center space-x-3"> |
| <div class="relative"> |
| <div class="w-8 h-8 rounded-full bg-gradient-to-br from-primary-500 to-green-400 flex items-center justify-center"> |
| <i data-feather="cpu" class="text-dark-900 text-xs"></i> |
| </div> |
| <img src="https://static.photos/technology/200x200/42" alt="Claude" class="w-3 h-3 rounded-full absolute -bottom-0.5 -right-0.5 border border-dark-900"> |
| </div> |
| <div> |
| <h4 class="font-medium text-sm">Email Assistant</h4> |
| <span class="text-xs text-primary-500 flex items-center"> |
| <span class="w-1.5 h-1.5 rounded-full bg-primary-500 mr-1"></span> |
| Active |
| </span> |
| </div> |
| </div> |
| <span class="text-xs bg-primary-500/10 text-primary-500 px-1.5 py-0.5 rounded">5 new</span> |
| </div> |
| <div class="h-1 bg-gray-800 rounded-full mb-1 overflow-hidden"> |
| <div class="bg-primary-500 h-full rounded-full w-3/4"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="agent-card glass-panel rounded-xl p-4 border border-gray-700 hover:border-primary-500/30 transition"> |
| <div class="flex justify-between items-start mb-3"> |
| <div class="flex items-center space-x-3"> |
| <div class="relative"> |
| <div class="w-8 h-8 rounded-full bg-gradient-to-br from-purple-500 to-pink-500 flex items-center justify-center"> |
| <i data-feather="calendar" class="text-dark-900 text-xs"></i> |
| </div> |
| <img src="https://n8n.io/favicon.ico" alt="n8n" class="w-3 h-3 rounded-full absolute -bottom-0.5 -right-0.5 border border-dark-900"> |
| </div> |
| <div> |
| <h4 class="font-medium text-sm">Scheduler</h4> |
| <span class="text-xs text-purple-500 flex items-center"> |
| <span class="w-1.5 h-1.5 rounded-full bg-purple-500 mr-1"></span> |
| Syncing |
| </span> |
| </div> |
| </div> |
| <span class="text-xs bg-purple-500/10 text-purple-500 px-1.5 py-0.5 rounded">2 meetings</span> |
| </div> |
| <div class="h-1 bg-gray-800 rounded-full mb-1 overflow-hidden"> |
| <div class="bg-purple-500 h-full rounded-full w-full"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="agent-card glass-panel rounded-xl p-4 border border-gray-700 hover:border-primary-500/30 transition"> |
| <div class="flex justify-between items-start mb-3"> |
| <div class="flex items-center space-x-3"> |
| <div class="relative"> |
| <div class="w-8 h-8 rounded-full bg-gradient-to-br from-blue-400 to-cyan-400 flex items-center justify-center"> |
| <i data-feather="trending-up" class="text-dark-900 text-xs"></i> |
| </div> |
| <img src="https://static.photos/technology/200x200/43" alt="Grok" class="w-3 h-3 rounded-full absolute -bottom-0.5 -right-0.5 border border-dark-900"> |
| </div> |
| <div> |
| <h4 class="font-medium text-sm">Analytics</h4> |
| <span class="text-xs text-blue-400 flex items-center"> |
| <span class="w-1.5 h-1.5 rounded-full bg-blue-400 mr-1"></span> |
| Processing |
| </span> |
| </div> |
| </div> |
| <span class="text-xs bg-blue-400/10 text-blue-400 px-1.5 py-0.5 rounded">Report</span> |
| </div> |
| <div class="h-1 bg-gray-800 rounded-full mb-1 overflow-hidden"> |
| <div class="bg-blue-400 h-full rounded-full w-2/5"></div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="agent-card glass-panel rounded-xl p-4 border border-gray-800 hover:border-primary-500/50 transition"> |
| <div class="flex justify-between items-start mb-3"> |
| <div class="flex items-center space-x-3"> |
| <div class="w-10 h-10 rounded-full bg-gradient-to-br from-primary-500 to-secondary-500 flex items-center justify-center"> |
| <i data-feather="cpu" class="text-dark-900"></i> |
| </div> |
| <div> |
| <h4 class="font-medium">VAI Orchestrator</h4> |
| <span class="text-xs text-primary-500 flex items-center"> |
| <span class="w-2 h-2 rounded-full bg-primary-500 mr-1"></span> |
| Operational |
| </span> |
| </div> |
| </div> |
| <button class="text-gray-400 hover:text-primary-500 transition"> |
| <i data-feather="more-vertical"></i> |
| </button> |
| </div> |
| <p class="text-sm text-gray-300 mb-3">Coordinating 5 agents for your morning routine</p> |
| <div class="h-1.5 bg-gray-800 rounded-full mb-3 overflow-hidden"> |
| <div class="progress-bar h-full rounded-full w-3/4"></div> |
| </div> |
| <div class="flex justify-between text-xs text-gray-400"> |
| <span>ETA: 2m</span> |
| <span>75% complete</span> |
| </div> |
| </div> |
| |
| |
| <div class="agent-card glass-panel rounded-xl p-4 border border-gray-800 hover:border-secondary-500/50 transition pulse-active"> |
| <div class="flex justify-between items-start mb-3"> |
| <div class="flex items-center space-x-3"> |
| <div class="w-10 h-10 rounded-full bg-gradient-to-br from-secondary-500 to-yellow-500 flex items-center justify-center"> |
| <i data-feather="alert-circle" class="text-dark-900"></i> |
| </div> |
| <div> |
| <h4 class="font-medium">Investor Bot</h4> |
| <span class="text-xs text-secondary-500 flex items-center"> |
| <span class="w-2 h-2 rounded-full bg-secondary-500 mr-1"></span> |
| Priority |
| </span> |
| </div> |
| </div> |
| <button class="text-gray-400 hover:text-secondary-500 transition"> |
| <i data-feather="more-vertical"></i> |
| </button> |
| </div> |
| <p class="text-sm text-gray-300 mb-3">New investment opportunity requires your attention</p> |
| <div class="h-1.5 bg-gray-800 rounded-full mb-3 overflow-hidden"> |
| <div class="bg-secondary-500 h-full rounded-full w-1/2"></div> |
| </div> |
| <div class="flex justify-between text-xs text-gray-400"> |
| <span>Waiting for input</span> |
| <span>50% complete</span> |
| </div> |
| </div> |
| |
| |
| <div class="agent-card glass-panel rounded-xl p-4 border border-gray-800 hover:border-green-400/50 transition"> |
| <div class="flex justify-between items-start mb-3"> |
| <div class="flex items-center space-x-3"> |
| <div class="w-10 h-10 rounded-full bg-gradient-to-br from-green-400 to-teal-400 flex items-center justify-center"> |
| <i data-feather="mail" class="text-dark-900"></i> |
| </div> |
| <div> |
| <h4 class="font-medium">Email Assistant</h4> |
| <span class="text-xs text-success-500 flex items-center"> |
| <span class="w-2 h-2 rounded-full bg-success-500 mr-1"></span> |
| Completed |
| </span> |
| </div> |
| </div> |
| <button class="text-gray-400 hover:text-green-400 transition"> |
| <i data-feather="more-vertical"></i> |
| </button> |
| </div> |
| <p class="text-sm text-gray-300 mb-3">Processed 12 important emails this morning</p> |
| <div class="h-1.5 bg-gray-800 rounded-full mb-3 overflow-hidden"> |
| <div class="bg-green-400 h-full rounded-full w-full"></div> |
| </div> |
| <div class="flex justify-between text-xs text-gray-400"> |
| <span>Task complete</span> |
| <span>100% complete</span> |
| </div> |
| </div> |
| |
| |
| <div class="agent-card glass-panel rounded-xl p-4 border border-gray-800 hover:border-red-400/50 transition"> |
| <div class="flex justify-between items-start mb-3"> |
| <div class="flex items-center space-x-3"> |
| <div class="w-10 h-10 rounded-full bg-gradient-to-br from-red-400 to-pink-500 flex items-center justify-center"> |
| <i data-feather="alert-triangle" class="text-dark-900"></i> |
| </div> |
| <div> |
| <h4 class="font-medium">Error Handler</h4> |
| <span class="text-xs text-red-400 flex items-center"> |
| <span class="w-2 h-2 rounded-full bg-red-400 mr-1"></span> |
| Error |
| </span> |
| </div> |
| </div> |
| <button class="text-gray-400 hover:text-red-400 transition"> |
| <i data-feather="more-vertical"></i> |
| </button> |
| </div> |
| <p class="text-sm text-gray-300 mb-3">Failed to connect to Slack API</p> |
| <div class="h-1.5 bg-gray-800 rounded-full mb-3 overflow-hidden"> |
| <div class="bg-red-400 h-full rounded-full w-1/4"></div> |
| </div> |
| <div class="flex justify-between text-xs text-gray-400"> |
| <span>Requires attention</span> |
| <span>25% complete</span> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="mb-16"> |
| <div class="text-center mb-12"> |
| <h3 class="text-2xl font-bold mb-4">Integrated with Your Favorite Tools</h3> |
| <p class="text-gray-400 max-w-2xl mx-auto">VAgents connects seamlessly with the tools you already use, creating a unified workflow across all platforms.</p> |
| </div> |
| |
| <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-6 mb-8"> |
| <div class="glass-panel rounded-xl p-6 flex items-center justify-center"> |
| <img src="https://upload.wikimedia.org/wikipedia/commons/4/45/Notion_app_logo.png" alt="Notion" class="h-10"> |
| </div> |
| <div class="glass-panel rounded-xl p-6 flex items-center justify-center"> |
| <img src="https://upload.wikimedia.org/wikipedia/commons/d/d5/Slack_icon_2019.svg" alt="Slack" class="h-10"> |
| </div> |
| <div class="glass-panel rounded-xl p-6 flex items-center justify-center"> |
| <img src="https://upload.wikimedia.org/wikipedia/commons/7/7e/Gmail_icon_%282020%29.svg" alt="Gmail" class="h-10"> |
| </div> |
| <div class="glass-panel rounded-xl p-6 flex items-center justify-center"> |
| <img src="https://upload.wikimedia.org/wikipedia/commons/1/12/Google_Drive_icon_%282020%29.svg" alt="Google Drive" class="h-10"> |
| </div> |
| <div class="glass-panel rounded-xl p-6 flex items-center justify-center"> |
| <img src="https://upload.wikimedia.org/wikipedia/commons/9/95/Instagram_logo_2022.svg" alt="Instagram" class="h-10"> |
| </div> |
| <div class="glass-panel rounded-xl p-6 flex items-center justify-center"> |
| <img src="https://static.photos/technology/200x200/42" alt="Claude" class="h-10"> |
| </div> |
| <div class="glass-panel rounded-xl p-6 flex items-center justify-center"> |
| <img src="https://static.photos/technology/200x200/43" alt="Grok" class="h-10"> |
| </div> |
| </div> |
| |
| <div class="text-center"> |
| <button class="px-6 py-3 border border-primary-500 text-primary-500 hover:bg-primary-500/10 rounded-lg font-medium transition inline-flex items-center space-x-2"> |
| <i data-feather="plus"></i> |
| <span>View All Integrations</span> |
| </button> |
| </div> |
| </section> |
| |
| <section class="mb-16 glass-panel rounded-2xl p-8"> |
| <h3 class="text-2xl font-bold mb-6 text-center">Where VAgents Come In</h3> |
| <div class="grid md:grid-cols-2 gap-8"> |
| <div> |
| <div class="flex items-start mb-4"> |
| <div class="bg-primary-500/20 p-2 rounded-lg mr-4"> |
| <i data-feather="zap" class="text-primary-500"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-2">Supercharged Productivity</h4> |
| <p class="text-gray-300">Build an app in a day with 8 experts working together, each with 50x the speed of a human. Your ideas become reality at unprecedented speed.</p> |
| </div> |
| </div> |
| <div class="flex items-start mb-4"> |
| <div class="bg-primary-500/20 p-2 rounded-lg mr-4"> |
| <i data-feather="heart" class="text-primary-500"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-2">Focus on What Matters</h4> |
| <p class="text-gray-300">Your lifestyle becomes about ideas, meaningful conversations, and strategic decisions - not busywork. Spend less time in front of screens and more time living.</p> |
| </div> |
| </div> |
| </div> |
| <div> |
| <div class="flex items-start mb-4"> |
| <div class="bg-primary-500/20 p-2 rounded-lg mr-4"> |
| <i data-feather="clock" class="text-primary-500"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-2">Hours Saved</h4> |
| <p class="text-gray-300">On average, VAgents users save 31 hours per week - that's almost an entire work week reclaimed for creativity and life.</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-primary-500/20 p-2 rounded-lg mr-4"> |
| <i data-feather="smile" class="text-primary-500"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-2">The Future is Exciting</h4> |
| <p class="text-gray-300">Imagine a world where your team of AI agents handles the mundane while you focus on vision and connection. That future starts today.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
| |
| <section class="mb-16 glass-panel rounded-2xl p-8"> |
| <div class="flex justify-between items-center mb-6"> |
| <h3 class="text-2xl font-bold">Your Weekly Performance</h3> |
| <div class="flex space-x-2"> |
| <button class="px-3 py-1 text-xs bg-primary-500/20 text-primary-500 rounded-lg transition">Week</button> |
| <button class="px-3 py-1 text-xs bg-dark-800 hover:bg-dark-700 rounded-lg transition">Month</button> |
| <button class="px-3 py-1 text-xs bg-dark-800 hover:bg-dark-700 rounded-lg transition">Year</button> |
| </div> |
| </div> |
| |
| <div class="grid grid-cols-1 lg:grid-cols-3 gap-6"> |
| <div class="lg:col-span-2 bg-dark-800 rounded-xl p-4"> |
| <img src="https://static.photos/technology/1024x576/44" alt="Weekly Analytics Dashboard" class="w-full rounded-lg mb-4"> |
| <div class="grid grid-cols-3 gap-4"> |
| <div class="bg-dark-700 p-3 rounded-lg"> |
| <p class="text-xs text-gray-400 mb-1">Time Saved</p> |
| <p class="text-xl font-bold text-primary-500">18.5 hours</p> |
| <p class="text-xs text-green-400">+2.5h from last week</p> |
| </div> |
| <div class="bg-dark-700 p-3 rounded-lg"> |
| <p class="text-xs text-gray-400 mb-1">Tasks Completed</p> |
| <p class="text-xl font-bold">42</p> |
| <p class="text-xs text-green-400">100% success rate</p> |
| </div> |
| <div class="bg-dark-700 p-3 rounded-lg"> |
| <p class="text-xs text-gray-400 mb-1">Agent Utilization</p> |
| <p class="text-xl font-bold">84%</p> |
| <p class="text-xs text-yellow-400">+6% from avg.</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="bg-dark-800 rounded-xl p-6"> |
| <h4 class="font-bold mb-4 flex items-center"> |
| <i data-feather="zap" class="text-yellow-500 mr-2"></i> |
| AI Recommendations |
| </h4> |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <div class="bg-primary-500/20 p-1.5 rounded-lg mr-3"> |
| <i data-feather="clock" class="text-primary-500 w-4 h-4"></i> |
| </div> |
| <div> |
| <p class="font-medium">Optimize Schedule Assistant</p> |
| <p class="text-sm text-gray-400">Could save additional 3h/week by adjusting meeting buffers</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-secondary-500/20 p-1.5 rounded-lg mr-3"> |
| <i data-feather="refresh-cw" class="text-secondary-500 w-4 h-4"></i> |
| </div> |
| <div> |
| <p class="font-medium">Automate Follow-ups</p> |
| <p class="text-sm text-gray-400">2.5h spent on manual follow-ups last week</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-green-400/20 p-1.5 rounded-lg mr-3"> |
| <i data-feather="bar-chart-2" class="text-green-400 w-4 h-4"></i> |
| </div> |
| <div> |
| <p class="font-medium">Data Analysis Report</p> |
| <p class="text-sm text-gray-400">Your analytics agent is underutilized by 32%</p> |
| </div> |
| </div> |
| </div> |
| <button class="mt-6 w-full px-4 py-2 bg-primary-500 hover:bg-primary-600 text-dark-900 rounded-lg font-medium transition flex items-center justify-center"> |
| <i data-feather="settings" class="mr-2"></i> |
| Optimize Now |
| </button> |
| </div> |
| </div> |
| </section> |
| |
| <section class="mb-16 glass-panel rounded-2xl p-6"> |
| <div class="flex justify-between items-center mb-6"> |
| <h3 class="text-xl font-bold">Daily Agent Performance Report</h3> |
| <div class="flex space-x-2"> |
| <button class="p-2 rounded-lg bg-dark-800 hover:bg-dark-700 transition"> |
| <i data-feather="filter"></i> |
| </button> |
| <button class="p-2 rounded-lg bg-dark-800 hover:bg-dark-700 transition"> |
| <i data-feather="refresh-cw"></i> |
| </button> |
| </div> |
| </div> |
| |
| <div class="space-y-4"> |
| |
| <div class="timeline-item relative pl-6"> |
| <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-primary-500 border-2 border-dark-900"></div> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h4 class="font-medium">VAI Assistant (Chief of Staff)</h4> |
| <p class="text-sm text-gray-300">Coordinated 5 agents for daily tasks</p> |
| <div class="flex text-xs mt-1 space-x-4"> |
| <span class="text-primary-500">⏱️ 1.5h saved</span> |
| <span>🔄 15min interaction</span> |
| </div> |
| </div> |
| <span class="text-xs text-gray-500">Today</span> |
| </div> |
| </div> |
| |
| |
| <div class="timeline-item relative pl-6"> |
| <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-primary-500 border-2 border-dark-900"></div> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h4 class="font-medium">Email Director</h4> |
| <p class="text-sm text-gray-300">Processed 24 emails (12 sent, 12 archived)</p> |
| <div class="flex text-xs mt-1 space-x-4"> |
| <span class="text-primary-500">⏱️ 2h saved</span> |
| <span>🔄 5min interaction</span> |
| </div> |
| </div> |
| <span class="text-xs text-gray-500">Today</span> |
| </div> |
| </div> |
| |
| |
| <div class="timeline-item relative pl-6"> |
| <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-primary-500 border-2 border-dark-900"></div> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h4 class="font-medium">Investor Relations</h4> |
| <p class="text-sm text-gray-300">Analyzed 3 investment opportunities</p> |
| <div class="flex text-xs mt-1 space-x-4"> |
| <span class="text-primary-500">⏱️ 3h saved</span> |
| <span>🔄 20min interaction</span> |
| </div> |
| </div> |
| <span class="text-xs text-gray-500">Today</span> |
| </div> |
| </div> |
| |
| |
| <div class="timeline-item relative pl-6"> |
| <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-primary-500 border-2 border-dark-900"></div> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h4 class="font-medium">Social Media Director</h4> |
| <p class="text-sm text-gray-300">Managed 5 posts across platforms</p> |
| <div class="flex text-xs mt-1 space-x-4"> |
| <span class="text-primary-500">⏱️ 1.5h saved</span> |
| <span>🔄 10min interaction</span> |
| </div> |
| </div> |
| <span class="text-xs text-gray-500">Today</span> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="glass-panel rounded-2xl p-8 mb-16 text-center"> |
| <h3 class="text-2xl font-bold mb-4">Ready to Transform Your Workflow?</h3> |
| <p class="text-gray-300 mb-6 max-w-2xl mx-auto">Join thousands of professionals who are already managing their AI teams with VAgents. Start your free trial today.</p> |
| <button onclick="window.location.href='onboarding.html'" class="px-8 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 hover:from-primary-600 hover:to-secondary-600 text-dark-900 rounded-lg font-bold transition"> |
| Get Started - Free Forever |
| </button> |
| </section> |
|
|
| |
| <footer class="border-t border-gray-800 pt-8 pb-12"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> |
| <div> |
| <h4 class="text-lg font-bold mb-4">VAgents</h4> |
| <p class="text-gray-400 text-sm">Your team of virtual assistant agents, managed by you.</p> |
| </div> |
| <div> |
| <h4 class="text-lg font-bold mb-4">Product</h4> |
| <ul class="space-y-2"> |
| <li><a href="onboarding.html" class="text-gray-400 hover:text-primary-500 transition text-sm">Get Started</a></li> |
| <li><a href="agents.html" class="text-gray-400 hover:text-primary-500 transition text-sm">Agents</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Pricing</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Integrations</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Roadmap</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-bold mb-4">Resources</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Documentation</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">API Reference</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Community</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Blog</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-bold mb-4">Company</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">About</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Careers</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Privacy</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-primary-500 transition text-sm">Terms</a></li> |
| </ul> |
| </div> |
| </div> |
| <div class="flex flex-col md:flex-row justify-between items-center border-t border-gray-800 pt-8"> |
| <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2023 VAgents. All rights reserved.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-500 hover:text-primary-500 transition"> |
| <i data-feather="twitter"></i> |
| </a> |
| <a href="#" class="text-gray-500 hover:text-primary-500 transition"> |
| <i data-feather="linkedin"></i> |
| </a> |
| <a href="#" class="text-gray-500 hover:text-primary-500 transition"> |
| <i data-feather="github"></i> |
| </a> |
| <a href="#" class="text-gray-500 hover:text-primary-500 transition"> |
| <i data-feather="discord"></i> |
| </a> |
| </div> |
| </div> |
| </footer> |
| </div> |
|
|
| |
| <div class="fixed right-4 bottom-4 z-50"> |
| <div class="bg-dark-800 border border-gray-700 rounded-xl shadow-xl overflow-hidden w-72"> |
| <div class="bg-dark-900 px-4 py-3 border-b border-gray-700 flex justify-between items-center"> |
| <span class="font-medium">Try Me Out</span> |
| <button class="text-gray-400 hover:text-primary-500 transition"> |
| <i data-feather="x"></i> |
| </button> |
| </div> |
| <div class="p-4 max-h-80 overflow-y-auto"> |
| <div class="flex mb-3"> |
| <div class="w-8 h-8 rounded-full bg-primary-500 flex items-center justify-center mr-2"> |
| <i data-feather="user" class="text-dark-900 w-4 h-4"></i> |
| </div> |
| <div class="bg-dark-700 px-3 py-2 rounded-lg max-w-xs"> |
| <p class="text-sm">What would you like to delegate today?</p> |
| </div> |
| </div> |
| <div class="flex justify-end mb-3"> |
| <div class="bg-primary-500 px-3 py-2 rounded-lg max-w-xs text-dark-900"> |
| <p class="text-sm">You have 3 meetings: 9am standup, 11am investor call, 3pm product review.</p> |
| </div> |
| </div> |
| </div> |
| <div class="p-2 border-t border-gray-700 flex"> |
| <input type="text" placeholder="Message VAI..." class="bg-dark-700 text-sm px-3 py-2 rounded-lg w-full focus:outline-none focus:ring-1 focus:ring-primary-500"> |
| <button class="ml-2 p-2 rounded-full bg-primary-500 hover:bg-primary-600 text-dark-900 transition"> |
| <i data-feather="send" class="w-4 h-4"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| <script> |
| feather.replace(); |
| |
| |
| function simulateAgentActivity() { |
| const agents = document.querySelectorAll('.agent-card'); |
| agents.forEach(agent => { |
| const progressBar = agent.querySelector('.h-1.5 > div'); |
| const progressText = agent.querySelector('.text-xs:last-child span:last-child'); |
| const status = agent.querySelector('.text-xs:first-child span:first-child'); |
| |
| if (!progressBar || !progressText || !status) return; |
| |
| const currentWidth = parseInt(progressBar.style.width || '0'); |
| const newWidth = Math.min(100, currentWidth + Math.floor(Math.random() * 15) + 5); |
| |
| progressBar.style.width = `${newWidth}%`; |
| progressText.textContent = `${newWidth}% complete`; |
| |
| if (newWidth >= 100) { |
| status.className = 'w-2 h-2 rounded-full bg-green-400 mr-1'; |
| status.parentElement.className = 'text-xs text-green-400 flex items-center'; |
| status.parentElement.querySelector('span:last-child').textContent = 'Complete'; |
| } else if (newWidth >= 75) { |
| status.className = 'w-2 h-2 rounded-full bg-primary-500 mr-1'; |
| status.parentElement.className = 'text-xs text-primary-500 flex items-center'; |
| status.parentElement.querySelector('span:last-child').textContent = 'Active'; |
| } |
| }); |
| |
| setTimeout(simulateAgentActivity, 3000); |
| } |
| |
| |
| window.addEventListener('load', () => { |
| setTimeout(simulateAgentActivity, 1000); |
| |
| |
| const timeline = document.querySelector('.timeline-item:last-child'); |
| if (timeline) { |
| const newTimelineItem = document.createElement('div'); |
| newTimelineItem.className = 'timeline-item relative pl-6'; |
| newTimelineItem.innerHTML = ` |
| <div class="absolute left-0 top-1 w-4 h-4 rounded-full bg-blue-400 border-2 border-dark-900"></div> |
| <div class="flex justify-between items-start"> |
| <div> |
| <h4 class="font-medium">Calendar Sync</h4> |
| <p class="text-sm text-gray-300">Added new meeting to your calendar</p> |
| </div> |
| <span class="text-xs text-gray-500">Just now</span> |
| </div> |
| `; |
| timeline.parentNode.appendChild(newTimelineItem); |
| } |
| }); |
| </script> |
| </body> |
| </html> |
|
|