|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Eon AI System</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> |
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
|
|
|
body { |
|
font-family: 'Inter', sans-serif; |
|
background-color: #0f172a; |
|
color: #f8fafc; |
|
} |
|
|
|
.gradient-bg { |
|
background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #c026d3 100%); |
|
} |
|
|
|
.card-hover { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.card-hover: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); |
|
} |
|
|
|
.feature-icon { |
|
width: 60px; |
|
height: 60px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
border-radius: 12px; |
|
margin-bottom: 1rem; |
|
} |
|
|
|
.chat-bubble { |
|
border-radius: 20px 20px 20px 0; |
|
max-width: 80%; |
|
} |
|
|
|
.user-bubble { |
|
border-radius: 20px 20px 0 20px; |
|
background-color: #3b82f6; |
|
} |
|
|
|
.pulse-animation { |
|
animation: pulse 2s infinite; |
|
} |
|
|
|
@keyframes pulse { |
|
0% { transform: scale(1); } |
|
50% { transform: scale(1.05); } |
|
100% { transform: scale(1); } |
|
} |
|
|
|
.dashboard-grid { |
|
display: grid; |
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); |
|
gap: 1.5rem; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<nav class="bg-gray-900 border-b border-gray-800 py-4 sticky top-0 z-50"> |
|
<div class="container mx-auto px-6 flex justify-between items-center"> |
|
<div class="flex items-center space-x-2"> |
|
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center"> |
|
<i class="fas fa-robot text-white text-xl"></i> |
|
</div> |
|
<span class="text-xl font-bold bg-clip-text text-transparent gradient-bg">Eon AI</span> |
|
</div> |
|
<div class="hidden md:flex space-x-8"> |
|
<a href="#features" class="text-gray-300 hover:text-white transition">Features</a> |
|
<a href="#capabilities" class="text-gray-300 hover:text-white transition">Capabilities</a> |
|
<a href="#dashboard" class="text-gray-300 hover:text-white transition">Dashboard</a> |
|
<a href="#contact" class="text-gray-300 hover:text-white transition">Contact</a> |
|
</div> |
|
<button class="md:hidden text-gray-300"> |
|
<i class="fas fa-bars text-2xl"></i> |
|
</button> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section class="gradient-bg py-20"> |
|
<div class="container mx-auto px-6 flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-10 md:mb-0"> |
|
<h1 class="text-4xl md:text-6xl font-bold mb-6">The Future of <span class="text-yellow-300">Artificial Intelligence</span></h1> |
|
<p class="text-xl text-gray-100 mb-8">Eon is a cutting-edge AI system combining cognitive intelligence, generative capabilities, and powerful integrations to revolutionize how you work and create.</p> |
|
<div class="flex space-x-4"> |
|
<button class="bg-white text-blue-900 px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition pulse-animation"> |
|
<i class="fas fa-play mr-2"></i> Demo |
|
</button> |
|
<button class="border-2 border-white text-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-blue-900 transition"> |
|
Learn More |
|
</button> |
|
</div> |
|
</div> |
|
<div class="md:w-1/2 relative"> |
|
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-lg rounded-2xl p-6 shadow-xl border border-gray-300 border-opacity-20"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div> |
|
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div> |
|
<div class="w-3 h-3 rounded-full bg-green-500"></div> |
|
</div> |
|
<div class="bg-gray-900 rounded-lg p-4 h-64 overflow-y-auto"> |
|
<div class="mb-4"> |
|
<div class="bg-gray-800 text-white p-3 rounded-lg chat-bubble inline-block"> |
|
<p>Hello! I'm Eon, your AI assistant. How can I help you today?</p> |
|
</div> |
|
</div> |
|
<div class="mb-4 text-right"> |
|
<div class="text-white p-3 rounded-lg user-bubble inline-block"> |
|
<p>What can you do?</p> |
|
</div> |
|
</div> |
|
<div> |
|
<div class="bg-gray-800 text-white p-3 rounded-lg chat-bubble inline-block"> |
|
<p>I can generate content, analyze data, automate tasks, and much more! I integrate with AWS, MySQL, and web services to provide comprehensive solutions.</p> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="mt-4 flex"> |
|
<input type="text" placeholder="Ask Eon anything..." class="flex-grow bg-gray-800 text-white px-4 py-2 rounded-l-lg focus:outline-none"> |
|
<button class="bg-blue-600 text-white px-4 py-2 rounded-r-lg hover:bg-blue-700 transition"> |
|
<i class="fas fa-paper-plane"></i> |
|
</button> |
|
</div> |
|
</div> |
|
<div class="absolute -bottom-6 -left-6 w-32 h-32 rounded-full bg-purple-500 opacity-20 blur-xl"></div> |
|
<div class="absolute -top-6 -right-6 w-40 h-40 rounded-full bg-blue-500 opacity-20 blur-xl"></div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="features" class="py-20 bg-gray-900"> |
|
<div class="container mx-auto px-6"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Core <span class="text-blue-400">AI Modules</span></h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto">Eon's advanced architecture combines multiple AI technologies for unparalleled performance</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-gray-800 rounded-xl p-8 card-hover"> |
|
<div class="feature-icon bg-blue-900 bg-opacity-30 text-blue-400"> |
|
<i class="fas fa-brain text-3xl"></i> |
|
</div> |
|
<h3 class="text-2xl font-semibold mb-3">Cognitive AI</h3> |
|
<p class="text-gray-400">Human-like reasoning, problem-solving, and decision-making capabilities that learn and adapt over time.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 card-hover"> |
|
<div class="feature-icon bg-purple-900 bg-opacity-30 text-purple-400"> |
|
<i class="fas fa-magic text-3xl"></i> |
|
</div> |
|
<h3 class="text-2xl font-semibold mb-3">Generative AI</h3> |
|
<p class="text-gray-400">Create stunning text, images, music, and code with state-of-the-art generative models.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 card-hover"> |
|
<div class="feature-icon bg-green-900 bg-opacity-30 text-green-400"> |
|
<i class="fas fa-chart-line text-3xl"></i> |
|
</div> |
|
<h3 class="text-2xl font-semibold mb-3">Predictive Analytics</h3> |
|
<p class="text-gray-400">Accurate forecasting and data modeling to anticipate trends and make informed decisions.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 card-hover"> |
|
<div class="feature-icon bg-yellow-900 bg-opacity-30 text-yellow-400"> |
|
<i class="fas fa-database text-3xl"></i> |
|
</div> |
|
<h3 class="text-2xl font-semibold mb-3">MySQL Integration</h3> |
|
<p class="text-gray-400">Seamless connection to MySQL databases for efficient data storage and retrieval.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 card-hover"> |
|
<div class="feature-icon bg-red-900 bg-opacity-30 text-red-400"> |
|
<i class="fab fa-aws text-3xl"></i> |
|
</div> |
|
<h3 class="text-2xl font-semibold mb-3">AWS Integration</h3> |
|
<p class="text-gray-400">Leverage the power of Amazon Web Services for scalable cloud computing and storage.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-800 rounded-xl p-8 card-hover"> |
|
<div class="feature-icon bg-indigo-900 bg-opacity-30 text-indigo-400"> |
|
<i class="fas fa-robot text-3xl"></i> |
|
</div> |
|
<h3 class="text-2xl font-semibold mb-3">AI Agent</h3> |
|
<p class="text-gray-400">Your personal assistant that interacts, answers questions, and provides intelligent support.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="capabilities" class="py-20 bg-gray-800"> |
|
<div class="container mx-auto px-6"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-4">Advanced <span class="text-purple-400">Capabilities</span></h2> |
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto">Eon goes beyond basic AI with powerful specialized features</p> |
|
</div> |
|
|
|
<div class="flex flex-col lg:flex-row gap-10 items-center"> |
|
<div class="lg:w-1/2"> |
|
<div class="bg-gray-900 rounded-xl p-8 mb-8 card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-blue-900 bg-opacity-30 flex items-center justify-center text-blue-400 mr-4"> |
|
<i class="fas fa-network-wired text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-semibold">MCP Servers Integration</h3> |
|
</div> |
|
<p class="text-gray-400">Access external data and tools through Model Context Protocol servers, expanding Eon's knowledge and capabilities beyond its core systems.</p> |
|
</div> |
|
|
|
<div class="bg-gray-900 rounded-xl p-8 mb-8 card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="w-12 h-12 rounded-full bg-purple-900 bg-opacity-30 flex items-center justify-center text-purple |
|
</html> |