tailwind.config = { theme: { extend: { colors: { primary: '#8B5CF6', secondary: '#4F46E5', accent: '#06B6D4', dark: '#0a0a1a', darker: '#050510' }, fontFamily: { sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'] } } } }

AI Agent Marketplace

Browse 50+ pre-built AI agents. Deploy in minutes, not months.

🎯
Sales

AI Sales Assistant

Qualify leads, manage follow-ups, and close deals faster with AI-powered sales automation.

R999/mo
Deploy
📞
Sales

Lead Qualifier

Automatically score and qualify inbound leads based on your ideal customer profile.

R699/mo
Deploy
📈
Sales

Pipeline Manager

Track deals, forecast revenue, and get AI-powered insights to optimize your sales pipeline.

R1,199/mo
Deploy
✍️
Marketing

Content Creator

Generate blogs, social posts, and marketing copy that converts. SEO-optimized and brand-aligned.

R799/mo
Deploy
📧
Marketing

Email Campaign Manager

Automate email campaigns with personalized content and AI-powered send-time optimization.

R899/mo
Deploy
📱
Marketing

Social Media Manager

Schedule posts, engage with followers, and track performance across all your social channels.

R699/mo
Deploy
💬
Support

24/7 Support Bot

Never miss a customer query. Instant responses, smart escalation, multi-channel support.

R1,499/mo
Deploy
🎫
Support

Ticket Triager

Automatically categorize, prioritize, and route support tickets to the right team member.

R599/mo
Deploy
📚
Support

Knowledge Base Assistant

Help customers find answers instantly from your documentation and help articles.

R499/mo
Deploy
⚙️
Operations

Workflow Automator

Automate repetitive tasks and streamline processes across your entire organization.

R1,299/mo
Deploy
📦
Operations

Inventory Tracker

Real-time inventory monitoring with predictive restocking and low-stock alerts.

R899/mo
Deploy
🔔
Operations

Alert Manager

Centralize system alerts, prioritize incidents, and automate responses to common issues.

R799/mo
Deploy
💰
Finance

Invoice Processor

Automate invoice generation, tracking, and payment reminders. Integrate with accounting software.

R999/mo
Deploy
📊
Finance

Expense Analyzer

Track expenses, detect anomalies, and get AI-powered insights to reduce costs.

R1,099/mo
Deploy
📈
Finance

Financial Forecaster

Predict cash flow, revenue trends, and financial risks with AI-powered modeling.

R1,599/mo
Deploy
👥
HR

Recruitment Assistant

Screen resumes, schedule interviews, and identify top candidates faster with AI.

R1,199/mo
Deploy
🎓
HR

Onboarding Bot

Automate new hire onboarding with personalized training paths and progress tracking.

R699/mo
Deploy
📝
HR

Performance Reviewer

Streamline performance reviews with data-driven insights and automated feedback collection.

R899/mo
Deploy
// Nav scroll effect const nav = document.getElementById('nav'); window.addEventListener('scroll', () => { nav.classList.toggle('nav-scrolled', window.scrollY > 50); nav.classList.toggle('glass-strong', window.scrollY > 50); }); // Mobile menu document.getElementById('mobile-menu-btn').addEventListener('click', function() { const menu = document.getElementById('mobile-menu'); menu.classList.toggle('hidden'); }); // Category filtering const categoryButtons = document.querySelectorAll('.category-pill'); const agentCards = document.querySelectorAll('.agent-card'); categoryButtons.forEach(button => { button.addEventListener('click', () => { const category = button.dataset.category; // Update active button categoryButtons.forEach(btn => btn.classList.remove('active')); button.classList.add('active'); // Filter agents agentCards.forEach(card => { if (category === 'all' || card.dataset.category === category) { card.style.display = 'block'; } else { card.style.display = 'none'; } }); }); }); // Search functionality const searchInput = document.getElementById('search'); searchInput.addEventListener('input', (e) => { const query = e.target.value.toLowerCase(); agentCards.forEach(card => { const title = card.querySelector('h3').textContent.toLowerCase(); const description = card.querySelector('p').textContent.toLowerCase(); if (title.includes(query) || description.includes(query)) { card.style.display = 'block'; } else { card.style.display = 'none'; } }); });