188 lines
9.8 KiB
HTML
188 lines
9.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AI Agent Hub - Your IT Partner</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<!-- Font Awesome for icons -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F9FAFB; /* Light gray background */
|
|
color: #1F2937; /* Dark charcoal text */
|
|
}
|
|
.cta-button {
|
|
background-color: #3B82F6; /* Blue */
|
|
color: white;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
font-weight: 600;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
.cta-button:hover {
|
|
background-color: #2563EB;
|
|
}
|
|
.agent-card {
|
|
background-color: white;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
.agent-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
}
|
|
.agent-icon {
|
|
color: #3B82F6;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="min-h-screen flex flex-col">
|
|
|
|
<!-- Header / Navbar (Optional, but good for context) -->
|
|
<header class="bg-white shadow-sm py-4">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 flex justify-between items-center">
|
|
<h1 class="text-2xl font-bold text-gray-800">AI Agent Hub</h1>
|
|
<nav>
|
|
<a href="#agents" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">Agents</a>
|
|
<a href="#about" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">About</a>
|
|
<a href="#contact" class="text-gray-600 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">Contact</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="flex-grow flex flex-col items-center justify-center py-12 px-4 sm:px-6 lg:px-8 text-center">
|
|
<div class="max-w-3xl mx-auto">
|
|
<h2 class="text-4xl sm:text-5xl font-extrabold text-gray-900 leading-tight">
|
|
Empower Your Work with AI Agents
|
|
</h2>
|
|
<p class="mt-4 text-lg text-gray-600">
|
|
Discover intuitive AI tools designed to streamline your tasks, provide insights, and enhance your productivity across various IT domains.
|
|
</p>
|
|
<div class="mt-8">
|
|
<button class="cta-button">
|
|
<i class="fas fa-robot mr-2"></i> Explore Agents
|
|
</button>
|
|
</div>
|
|
<div class="mt-12">
|
|
<img src="https://placehold.co/600x300/E0E7FF/3B82F6?text=AI+Agents+Illustration" alt="Illustration of AI agents working together" class="rounded-lg shadow-lg">
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Agent Categories Section -->
|
|
<section id="agents" class="py-16 bg-gray-50">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<h3 class="text-3xl font-bold text-gray-900 text-center mb-12">Our AI Agents</h3>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
|
|
|
<!-- Agent Card 1: IT Support Agent -->
|
|
<div class="agent-card p-6 flex flex-col items-center justify-center text-center">
|
|
<i class="fas fa-headset text-5xl agent-icon mb-4"></i>
|
|
<h4 class="text-xl font-semibold text-gray-800 mb-2">IT Support Agent</h4>
|
|
<p class="text-gray-600 text-sm">Get instant help with common IT issues, password resets, and software troubleshooting.</p>
|
|
<button class="mt-4 cta-button text-sm px-4 py-2" onclick="alert('Launching IT Support Agent!')">
|
|
<i class="fas fa-arrow-right mr-1"></i> Launch
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Agent Card 2: Data Analysis Agent -->
|
|
<div class="agent-card p-6 flex flex-col items-center justify-center text-center">
|
|
<i class="fas fa-chart-line text-5xl agent-icon mb-4"></i>
|
|
<h4 class="text-xl font-semibold text-gray-800 mb-2">Data Analysis Agent</h4>
|
|
<p class="text-gray-600 text-sm">Generate insights from your company's data, create reports, and identify trends.</p>
|
|
<button class="mt-4 cta-button text-sm px-4 py-2" onclick="alert('Launching Data Analysis Agent!')">
|
|
<i class="fas fa-arrow-right mr-1"></i> Launch
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Agent Card 3: Document Management Agent -->
|
|
<div class="agent-card p-6 flex flex-col items-center justify-center text-center">
|
|
<i class="fas fa-file-alt text-5xl agent-icon mb-4"></i>
|
|
<h4 class="text-xl font-semibold text-gray-800 mb-2">Document Management Agent</h4>
|
|
<p class="text-gray-600 text-sm">Organize, categorize, and retrieve company documents with ease.</p>
|
|
<button class="mt-4 cta-button text-sm px-4 py-2" onclick="alert('Launching Document Management Agent!')">
|
|
<i class="fas fa-arrow-right mr-1"></i> Launch
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Agent Card 4: Security Agent -->
|
|
<div class="agent-card p-6 flex flex-col items-center justify-center text-center">
|
|
<i class="fas fa-shield-alt text-5xl agent-icon mb-4"></i>
|
|
<h4 class="text-xl font-semibold text-gray-800 mb-2">Security Agent</h4>
|
|
<p class="text-gray-600 text-sm">Monitor for threats, detect vulnerabilities, and provide security recommendations.</p>
|
|
<button class="mt-4 cta-button text-sm px-4 py-2" onclick="alert('Launching Security Agent!')">
|
|
<i class="fas fa-arrow-right mr-1"></i> Launch
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Agent Card 5: Project Management Agent -->
|
|
<div class="agent-card p-6 flex flex-col items-center justify-center text-center">
|
|
<i class="fas fa-tasks text-5xl agent-icon mb-4"></i>
|
|
<h4 class="text-xl font-semibold text-gray-800 mb-2">Project Management Agent</h4>
|
|
<p class="text-gray-600 text-sm">Plan, track, and manage projects efficiently with automated task lists and progress updates.</p>
|
|
<button class="mt-4 cta-button text-sm px-4 py-2" onclick="alert('Launching Project Management Agent!')">
|
|
<i class="fas fa-arrow-right mr-1"></i> Launch
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Agent Card 6: Customer Support Agent -->
|
|
<div class="agent-card p-6 flex flex-col items-center justify-center text-center">
|
|
<i class="fas fa-comments text-5xl agent-icon mb-4"></i>
|
|
<h4 class="text-xl font-semibold text-gray-800 mb-2">Customer Support Agent</h4>
|
|
<p class="text-gray-600 text-sm">Automate common customer inquiries and provide instant responses to external users.</p>
|
|
<button class="mt-4 cta-button text-sm px-4 py-2" onclick="alert('Launching Customer Support Agent!')">
|
|
<i class="fas fa-arrow-right mr-1"></i> Launch
|
|
</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- About Section -->
|
|
<section id="about" class="py-16 bg-white">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<h3 class="text-3xl font-bold text-gray-900 text-center mb-8">What is the AI Agent Hub?</h3>
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
|
|
<div>
|
|
<p class="text-lg text-gray-600 mb-4">
|
|
The AI Agent Hub is your centralized platform for accessing a suite of AI-powered tools designed to augment your daily IT operations. Each agent is specialized to handle a specific type of task, making your work more efficient and effective.
|
|
</p>
|
|
<p class="text-lg text-gray-600">
|
|
Our agents are continuously trained and updated to provide the most accurate and helpful assistance, ensuring you have the best possible experience.
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<img src="https://placehold.co/500x300/9CA3AF/1F2937?text=About+AI+Hub" alt="About AI Agent Hub" class="rounded-lg shadow-md">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Call to Action / Get Started Section -->
|
|
<section id="contact" class="py-16 bg-gray-100">
|
|
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
|
<h3 class="text-3xl font-bold text-gray-900 mb-6">Ready to Boost Your Productivity?</h3>
|
|
<p class="text-lg text-gray-700 mb-8">
|
|
Join the future of IT with our AI Agent Hub. Experience streamlined workflows and intelligent insights.
|
|
</p>
|
|
<a href="#" class="cta-button">
|
|
<i class="fas fa-rocket mr-2"></i> Get Started Today!
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="bg-white shadow-inner py-6">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-gray-500 text-sm">
|
|
© 2024 Your Company Name. All rights reserved.
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html> |