frontend_nyla/public/poweron-home.html
2026-01-20 00:56:00 +01:00

192 lines
6.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="HF3EVKLJvD7jp5xiS-r7in7Jo01_okijtWzDSnu_YhQ" />
<title>PowerOn AI Platform - Home</title>
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8fafc;
color: #1e293b;
line-height: 1.6;
font-size: 16px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: #ffffff;
min-height: 100vh;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 2px solid #e2e8f0;
}
.header h1 {
color: #3b82f6;
font-size: 2.5rem;
margin-bottom: 1rem;
}
.header p {
color: #64748b;
font-size: 1.1rem;
}
.content-section {
margin-bottom: 2.5rem;
}
.content-section h2 {
color: #1e293b;
font-size: 1.5rem;
margin-bottom: 1rem;
border-left: 4px solid #3b82f6;
padding-left: 1rem;
}
.content-section p {
margin-bottom: 1rem;
color: #475569;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.feature-card {
background-color: #f1f5f9;
padding: 1.5rem;
border-radius: 0.5rem;
border-left: 4px solid #3b82f6;
}
.feature-card h3 {
color: #1e293b;
margin-bottom: 0.5rem;
}
.feature-card p {
color: #64748b;
font-size: 0.95rem;
}
.navigation {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid #e2e8f0;
}
.nav-link {
display: inline-block;
margin: 0 1rem;
padding: 0.75rem 1.5rem;
background-color: #3b82f6;
color: white;
text-decoration: none;
border-radius: 0.25rem;
transition: background-color 0.2s ease;
}
.nav-link:hover {
background-color: #2563eb;
}
.footer {
text-align: center;
margin-top: 2rem;
color: #64748b;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>PowerOn AI Platform</h1>
<p>Intelligent Workflow Automation & Multi-Agent Collaboration</p>
</div>
<div class="content-section">
<h2>What is PowerOn?</h2>
<p>
PowerOn is an advanced AI-powered platform that revolutionizes how businesses manage workflows,
collaborate with AI agents, and automate complex processes. Our platform combines cutting-edge
artificial intelligence with intuitive workflow design tools to help organizations work smarter,
not harder.
</p>
</div>
<div class="content-section">
<h2>Core Capabilities</h2>
<div class="features">
<div class="feature-card">
<h3>AI Agent Management</h3>
<p>Create, configure, and manage multiple AI agents for different business tasks and workflows.</p>
</div>
<div class="feature-card">
<h3>Workflow Automation</h3>
<p>Design and execute complex business processes with drag-and-drop workflow builder.</p>
</div>
<div class="feature-card">
<h3>Document Processing</h3>
<p>Intelligent document extraction, analysis, and generation powered by AI.</p>
</div>
<div class="feature-card">
<h3>Multi-Platform Integration</h3>
<p>Seamlessly connect with Microsoft 365, SharePoint, Outlook, and web services.</p>
</div>
</div>
</div>
<div class="content-section">
<h2>Who Benefits from PowerOn?</h2>
<p>
PowerOn is designed for businesses of all sizes that want to leverage AI to streamline operations,
improve productivity, and reduce manual workload. Whether you're managing customer relationships,
processing documents, or coordinating team workflows, PowerOn provides the tools you need to succeed
in the AI-powered future.
</p>
</div>
<div class="content-section">
<h2>Key Benefits</h2>
<ul style="color: #475569; margin-left: 2rem;">
<li>Reduce manual work by up to 80% through intelligent automation</li>
<li>Improve accuracy and consistency in business processes</li>
<li>Enable 24/7 operation with AI agents that never sleep</li>
<li>Scale operations without proportional increase in human resources</li>
<li>Gain insights from AI-powered analytics and reporting</li>
</ul>
</div>
<div class="navigation">
<a href="poweron-privacy.html" class="nav-link">Privacy Policy</a>
<a href="poweron-terms.html" class="nav-link">Terms of Service</a>
</div>
<div class="footer">
<p>&copy; 2025 PowerOn AI Platform. All rights reserved.</p>
</div>
</div>
</body>
</html>