FourLabs-UN2 commited on
Commit
ba28ee1
·
verified ·
1 Parent(s): bd70ed5

Faça o dashboard

Browse files
Files changed (3) hide show
  1. README.md +9 -5
  2. dashboard.html +287 -0
  3. index.html +286 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Undefined
3
- emoji: 📉
4
- colorFrom: gray
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
1
  ---
2
+ title: undefined
3
+ colorFrom: pink
4
+ colorTo: pink
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
dashboard.html ADDED
@@ -0,0 +1,287 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AetherSync - Super-Agent HR Ecosystem</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#21223a',
15
+ secondary: '#ff580f',
16
+ }
17
+ }
18
+ }
19
+ }
20
+ </script>
21
+ <script src="https://unpkg.com/feather-icons"></script>
22
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
23
+ </head>
24
+ <body class="bg-primary text-white font-sans">
25
+ <!-- Navigation -->
26
+ <nav class="bg-primary/90 backdrop-blur-lg fixed w-full z-50 border-b border-gray-700">
27
+ <div class="container mx-auto px-6 py-4">
28
+ <div class="flex justify-between items-center">
29
+ <div class="flex items-center space-x-2">
30
+ <div class="w-8 h-8 bg-secondary rounded-lg flex items-center justify-center">
31
+ <i data-feather="cpu" class="w-4 h-4"></i>
32
+ </div>
33
+ <span class="text-xl font-bold">AetherSync</span>
34
+ </div>
35
+
36
+ <div class="hidden md:flex space-x-8">
37
+ <a href="#features" class="hover:text-secondary transition-colors">Features</a>
38
+ <a href="#ecosystem" class="hover:text-secondary transition-colors">Ecosystem</a>
39
+ <a href="#demo" class="hover:text-secondary transition-colors">Demo</a>
40
+ <a href="dashboard.html" class="bg-secondary px-4 py-2 rounded-lg hover:bg-secondary/80 transition-colors">Launch Dashboard</a>
41
+ </div>
42
+
43
+ <button class="md:hidden">
44
+ <i data-feather="menu"></i>
45
+ </button>
46
+ </div>
47
+ </div>
48
+ </nav>
49
+
50
+ <!-- Hero Section -->
51
+ <section id="hero" class="min-h-screen flex items-center relative overflow-hidden">
52
+ <div id="vanta-bg" class="absolute inset-0"></div>
53
+ <div class="container mx-auto px-6 relative z-10">
54
+ <div class="max-w-4xl">
55
+ <h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
56
+ Super-Agent Ecosystems
57
+ <span class="text-secondary block">for HR Excellence</span>
58
+ </h1>
59
+ <p class="text-xl md:text-2xl text-gray-300 mb-8 leading-relaxed">
60
+ Transform your human resources management with collaborative AI agents working in perfect harmony.
61
+ Optimize payroll, time tracking, and employee management through our intelligent multi-agent architecture.
62
+ </p>
63
+ <div class="flex flex-col sm:flex-row gap-4">
64
+ <a href="dashboard.html" class="bg-secondary hover:bg-secondary/90 text-white px-8 py-4 rounded-lg text-lg font-semibold transition-all transform hover:scale-105 text-center">
65
+ Explore Dashboard
66
+ </a>
67
+ <a href="#demo" class="border border-secondary text-secondary hover:bg-secondary/10 px-8 py-4 rounded-lg text-lg font-semibold transition-all text-center">
68
+ Watch Demo
69
+ </a>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </section>
74
+
75
+ <!-- Features Section -->
76
+ <section id="features" class="py-20 bg-primary/95">
77
+ <div class="container mx-auto px-6">
78
+ <div class="text-center mb-16">
79
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Intelligent HR Automation</h2>
80
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
81
+ Our super-agent ecosystem seamlessly orchestrates complex HR processes through specialized AI agents
82
+ </p>
83
+ </div>
84
+
85
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
86
+ <!-- Feature 1 -->
87
+ <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
88
+ <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
89
+ <i data-feather="clock" class="text-secondary"></i>
90
+ </div>
91
+ <h3 class="text-2xl font-bold mb-4">Time & Attendance</h3>
92
+ <p class="text-gray-300 mb-4">
93
+ Smart agents monitor and optimize employee schedules, overtime, and attendance patterns
94
+ </p>
95
+ <ul class="space-y-2 text-gray-400">
96
+ <li class="flex items-center">
97
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
98
+ Automated time tracking
99
+ </li>
100
+ <li class="flex items-center">
101
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
102
+ Schedule optimization
103
+ </li>
104
+ <li class="flex items-center">
105
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
106
+ Compliance monitoring
107
+ </li>
108
+ </ul>
109
+ </div>
110
+
111
+ <!-- Feature 2 -->
112
+ <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
113
+ <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
114
+ <i data-feather="dollar-sign" class="text-secondary"></i>
115
+ </div>
116
+ <h3 class="text-2xl font-bold mb-4">Payroll Processing</h3>
117
+ <p class="text-gray-300 mb-4">
118
+ Collaborative agents handle complex payroll calculations with precision and compliance
119
+ </p>
120
+ <ul class="space-y-2 text-gray-400">
121
+ <li class="flex items-center">
122
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
123
+ Tax optimization
124
+ </li>
125
+ <li class="flex items-center">
126
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
127
+ Benefit calculations
128
+ </li>
129
+ <li class="flex items-center">
130
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
131
+ Audit compliance
132
+ </li>
133
+ </ul>
134
+ </div>
135
+
136
+ <!-- Feature 3 -->
137
+ <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
138
+ <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
139
+ <i data-feather="users" class="text-secondary"></i>
140
+ </div>
141
+ <h3 class="text-2xl font-bold mb-4">Employee Management</h3>
142
+ <p class="text-gray-300 mb-4">
143
+ Intelligent agents provide personalized support and management for your workforce
144
+ </p>
145
+ <ul class="space-y-2 text-gray-400">
146
+ <li class="flex items-center">
147
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
148
+ Performance analytics
149
+ </li>
150
+ <li class="flex items-center">
151
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
152
+ Training coordination
153
+ </li>
154
+ <li class="flex items-center">
155
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
156
+ Career path planning
157
+ </li>
158
+ </ul>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </section>
163
+
164
+ <!-- Ecosystem Section -->
165
+ <section id="ecosystem" class="py-20">
166
+ <div class="container mx-auto px-6">
167
+ <div class="text-center mb-16">
168
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Multi-Agent Architecture</h2>
169
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
170
+ Our ecosystem comprises specialized agents working collaboratively to optimize HR processes
171
+ </p>
172
+ </div>
173
+
174
+ <div class="relative">
175
+ <!-- Central Hub -->
176
+ <div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 z-10">
177
+ <div class="w-32 h-32 bg-secondary rounded-full flex items-center justify-center animate-pulse">
178
+ <i data-feather="cpu" class="w-8 h-8"></i>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Agent Nodes -->
183
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 relative z-20">
184
+ <!-- Agent 1 -->
185
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
186
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
187
+ <i data-feather="clock" class="text-secondary"></i>
188
+ </div>
189
+ <h4 class="font-bold text-lg mb-2">Chrono Agent</h4>
190
+ <p class="text-gray-400 text-sm">Time management & scheduling optimization</p>
191
+ </div>
192
+
193
+ <!-- Agent 2 -->
194
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
195
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
196
+ <i data-feather="dollar-sign" class="text-secondary"></i>
197
+ </div>
198
+ <h4 class="font-bold text-lg mb-2">Fiscal Agent</h4>
199
+ <p class="text-gray-400 text-sm">Payroll processing & financial compliance</p>
200
+ </div>
201
+
202
+ <!-- Agent 3 -->
203
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
204
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
205
+ <i data-feather="trending-up" class="text-secondary"></i>
206
+ </div>
207
+ <h4 class="font-bold text-lg mb-2">Growth Agent</h4>
208
+ <p class="text-gray-400 text-sm">Performance tracking & career development</p>
209
+ </div>
210
+
211
+ <!-- Agent 4 -->
212
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
213
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
214
+ <i data-feather="shield" class="text-secondary"></i>
215
+ </div>
216
+ <h4 class="font-bold text-lg mb-2">Compliance Agent</h4>
217
+ <p class="text-gray-400 text-sm">Regulatory adherence & policy enforcement</p>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </section>
223
+
224
+ <!-- Demo Section -->
225
+ <section id="demo" class="py-20 bg-primary/95">
226
+ <div class="container mx-auto px-6">
227
+ <div class="text-center mb-16">
228
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Experience the Future</h2>
229
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
230
+ See how our super-agent ecosystem transforms HR management in real-time
231
+ </p>
232
+ </div>
233
+
234
+ <div class="max-w-6xl mx-auto bg-primary border border-gray-700 rounded-2xl p-8">
235
+ <div class="aspect-video bg-gray-800 rounded-lg flex items-center justify-center">
236
+ <div class="text-center">
237
+ <i data-feather="play-circle" class="w-16 h-16 text-secondary mx-auto mb-4"></i>
238
+ <p class="text-gray-400">Interactive Dashboard Demo</p>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </section>
244
+
245
+ <!-- Footer -->
246
+ <footer class="bg-primary border-t border-gray-700 py-12">
247
+ <div class="container mx-auto px-6">
248
+ <div class="flex flex-col md:flex-row justify-between items-center">
249
+ <div class="flex items-center space-x-2 mb-4 md:mb-0">
250
+ <div class="w-8 h-8 bg-secondary rounded-lg flex items-center justify-center">
251
+ <i data-feather="cpu" class="w-4 h-4"></i>
252
+ </div>
253
+ <span class="text-xl font-bold">AetherSync</span>
254
+ </div>
255
+ <p class="text-gray-400 text-center md:text-left">
256
+ Super-Agent HR Ecosystems for Organizational Excellence
257
+ </p>
258
+ </div>
259
+ <div class="text-center md:text-right">
260
+ <p class="text-gray-500 text-sm">
261
+ © 2024 AetherSync. The future of HR management.
262
+ </p>
263
+ </div>
264
+ </div>
265
+ </footer>
266
+
267
+ <script>
268
+ // Initialize Vanta.js background
269
+ VANTA.GLOBE({
270
+ el: "#vanta-bg",
271
+ mouseControls: true,
272
+ touchControls: true,
273
+ gyroControls: false,
274
+ minHeight: 200.00,
275
+ minWidth: 200.00,
276
+ scale: 1.00,
277
+ scaleMobile: 1.00,
278
+ color: '#ff580f',
279
+ backgroundColor: '#21223a',
280
+ size: 0.8
281
+ });
282
+
283
+ // Initialize Feather Icons
284
+ feather.replace();
285
+ </script>
286
+ </body>
287
+ </html>
index.html CHANGED
@@ -1,19 +1,287 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AetherSync - Super-Agent HR Ecosystem</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#21223a',
15
+ secondary: '#ff580f',
16
+ }
17
+ }
18
+ }
19
+ }
20
+ </script>
21
+ <script src="https://unpkg.com/feather-icons"></script>
22
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
23
+ </head>
24
+ <body class="bg-primary text-white font-sans">
25
+ <!-- Navigation -->
26
+ <nav class="bg-primary/90 backdrop-blur-lg fixed w-full z-50 border-b border-gray-700">
27
+ <div class="container mx-auto px-6 py-4">
28
+ <div class="flex justify-between items-center">
29
+ <div class="flex items-center space-x-2">
30
+ <div class="w-8 h-8 bg-secondary rounded-lg flex items-center justify-center">
31
+ <i data-feather="cpu" class="w-4 h-4"></i>
32
+ </div>
33
+ <span class="text-xl font-bold">AetherSync</span>
34
+ </div>
35
+
36
+ <div class="hidden md:flex space-x-8">
37
+ <a href="#features" class="hover:text-secondary transition-colors">Features</a>
38
+ <a href="#ecosystem" class="hover:text-secondary transition-colors">Ecosystem</a>
39
+ <a href="#demo" class="hover:text-secondary transition-colors">Demo</a>
40
+ <a href="dashboard.html" class="bg-secondary px-4 py-2 rounded-lg hover:bg-secondary/80 transition-colors">Launch Dashboard</a>
41
+ </div>
42
+
43
+ <button class="md:hidden">
44
+ <i data-feather="menu"></i>
45
+ </button>
46
+ </div>
47
+ </div>
48
+ </nav>
49
+
50
+ <!-- Hero Section -->
51
+ <section id="hero" class="min-h-screen flex items-center relative overflow-hidden">
52
+ <div id="vanta-bg" class="absolute inset-0"></div>
53
+ <div class="container mx-auto px-6 relative z-10">
54
+ <div class="max-w-4xl">
55
+ <h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
56
+ Super-Agent Ecosystems
57
+ <span class="text-secondary block">for HR Excellence</span>
58
+ </h1>
59
+ <p class="text-xl md:text-2xl text-gray-300 mb-8 leading-relaxed">
60
+ Transform your human resources management with collaborative AI agents working in perfect harmony.
61
+ Optimize payroll, time tracking, and employee management through our intelligent multi-agent architecture.
62
+ </p>
63
+ <div class="flex flex-col sm:flex-row gap-4">
64
+ <a href="dashboard.html" class="bg-secondary hover:bg-secondary/90 text-white px-8 py-4 rounded-lg text-lg font-semibold transition-all transform hover:scale-105 text-center">
65
+ Explore Dashboard
66
+ </a>
67
+ <a href="#demo" class="border border-secondary text-secondary hover:bg-secondary/10 px-8 py-4 rounded-lg text-lg font-semibold transition-all text-center">
68
+ Watch Demo
69
+ </a>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ </section>
74
+
75
+ <!-- Features Section -->
76
+ <section id="features" class="py-20 bg-primary/95">
77
+ <div class="container mx-auto px-6">
78
+ <div class="text-center mb-16">
79
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Intelligent HR Automation</h2>
80
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
81
+ Our super-agent ecosystem seamlessly orchestrates complex HR processes through specialized AI agents
82
+ </p>
83
+ </div>
84
+
85
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
86
+ <!-- Feature 1 -->
87
+ <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
88
+ <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
89
+ <i data-feather="clock" class="text-secondary"></i>
90
+ </div>
91
+ <h3 class="text-2xl font-bold mb-4">Time & Attendance</h3>
92
+ <p class="text-gray-300 mb-4">
93
+ Smart agents monitor and optimize employee schedules, overtime, and attendance patterns
94
+ </p>
95
+ <ul class="space-y-2 text-gray-400">
96
+ <li class="flex items-center">
97
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
98
+ Automated time tracking
99
+ </li>
100
+ <li class="flex items-center">
101
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
102
+ Schedule optimization
103
+ </li>
104
+ <li class="flex items-center">
105
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
106
+ Compliance monitoring
107
+ </li>
108
+ </ul>
109
+ </div>
110
+
111
+ <!-- Feature 2 -->
112
+ <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
113
+ <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
114
+ <i data-feather="dollar-sign" class="text-secondary"></i>
115
+ </div>
116
+ <h3 class="text-2xl font-bold mb-4">Payroll Processing</h3>
117
+ <p class="text-gray-300 mb-4">
118
+ Collaborative agents handle complex payroll calculations with precision and compliance
119
+ </p>
120
+ <ul class="space-y-2 text-gray-400">
121
+ <li class="flex items-center">
122
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
123
+ Tax optimization
124
+ </li>
125
+ <li class="flex items-center">
126
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
127
+ Benefit calculations
128
+ </li>
129
+ <li class="flex items-center">
130
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
131
+ Audit compliance
132
+ </li>
133
+ </ul>
134
+ </div>
135
+
136
+ <!-- Feature 3 -->
137
+ <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
138
+ <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
139
+ <i data-feather="users" class="text-secondary"></i>
140
+ </div>
141
+ <h3 class="text-2xl font-bold mb-4">Employee Management</h3>
142
+ <p class="text-gray-300 mb-4">
143
+ Intelligent agents provide personalized support and management for your workforce
144
+ </p>
145
+ <ul class="space-y-2 text-gray-400">
146
+ <li class="flex items-center">
147
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
148
+ Performance analytics
149
+ </li>
150
+ <li class="flex items-center">
151
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
152
+ Training coordination
153
+ </li>
154
+ <li class="flex items-center">
155
+ <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
156
+ Career path planning
157
+ </li>
158
+ </ul>
159
+ </div>
160
+ </div>
161
+ </div>
162
+ </section>
163
+
164
+ <!-- Ecosystem Section -->
165
+ <section id="ecosystem" class="py-20">
166
+ <div class="container mx-auto px-6">
167
+ <div class="text-center mb-16">
168
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Multi-Agent Architecture</h2>
169
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
170
+ Our ecosystem comprises specialized agents working collaboratively to optimize HR processes
171
+ </p>
172
+ </div>
173
+
174
+ <div class="relative">
175
+ <!-- Central Hub -->
176
+ <div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 z-10">
177
+ <div class="w-32 h-32 bg-secondary rounded-full flex items-center justify-center animate-pulse">
178
+ <i data-feather="cpu" class="w-8 h-8"></i>
179
+ </div>
180
+ </div>
181
+
182
+ <!-- Agent Nodes -->
183
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 relative z-20">
184
+ <!-- Agent 1 -->
185
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
186
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
187
+ <i data-feather="clock" class="text-secondary"></i>
188
+ </div>
189
+ <h4 class="font-bold text-lg mb-2">Chrono Agent</h4>
190
+ <p class="text-gray-400 text-sm">Time management & scheduling optimization</p>
191
+ </div>
192
+
193
+ <!-- Agent 2 -->
194
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
195
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
196
+ <i data-feather="dollar-sign" class="text-secondary"></i>
197
+ </div>
198
+ <h4 class="font-bold text-lg mb-2">Fiscal Agent</h4>
199
+ <p class="text-gray-400 text-sm">Payroll processing & financial compliance</p>
200
+ </div>
201
+
202
+ <!-- Agent 3 -->
203
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
204
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
205
+ <i data-feather="trending-up" class="text-secondary"></i>
206
+ </div>
207
+ <h4 class="font-bold text-lg mb-2">Growth Agent</h4>
208
+ <p class="text-gray-400 text-sm">Performance tracking & career development</p>
209
+ </div>
210
+
211
+ <!-- Agent 4 -->
212
+ <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
213
+ <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
214
+ <i data-feather="shield" class="text-secondary"></i>
215
+ </div>
216
+ <h4 class="font-bold text-lg mb-2">Compliance Agent</h4>
217
+ <p class="text-gray-400 text-sm">Regulatory adherence & policy enforcement</p>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </section>
223
+
224
+ <!-- Demo Section -->
225
+ <section id="demo" class="py-20 bg-primary/95">
226
+ <div class="container mx-auto px-6">
227
+ <div class="text-center mb-16">
228
+ <h2 class="text-4xl md:text-5xl font-bold mb-4">Experience the Future</h2>
229
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
230
+ See how our super-agent ecosystem transforms HR management in real-time
231
+ </p>
232
+ </div>
233
+
234
+ <div class="max-w-6xl mx-auto bg-primary border border-gray-700 rounded-2xl p-8">
235
+ <div class="aspect-video bg-gray-800 rounded-lg flex items-center justify-center">
236
+ <div class="text-center">
237
+ <i data-feather="play-circle" class="w-16 h-16 text-secondary mx-auto mb-4"></i>
238
+ <p class="text-gray-400">Interactive Dashboard Demo</p>
239
+ </div>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </section>
244
+
245
+ <!-- Footer -->
246
+ <footer class="bg-primary border-t border-gray-700 py-12">
247
+ <div class="container mx-auto px-6">
248
+ <div class="flex flex-col md:flex-row justify-between items-center">
249
+ <div class="flex items-center space-x-2 mb-4 md:mb-0">
250
+ <div class="w-8 h-8 bg-secondary rounded-lg flex items-center justify-center">
251
+ <i data-feather="cpu" class="w-4 h-4"></i>
252
+ </div>
253
+ <span class="text-xl font-bold">AetherSync</span>
254
+ </div>
255
+ <p class="text-gray-400 text-center md:text-left">
256
+ Super-Agent HR Ecosystems for Organizational Excellence
257
+ </p>
258
+ </div>
259
+ <div class="text-center md:text-right">
260
+ <p class="text-gray-500 text-sm">
261
+ © 2024 AetherSync. The future of HR management.
262
+ </p>
263
+ </div>
264
+ </div>
265
+ </footer>
266
+
267
+ <script>
268
+ // Initialize Vanta.js background
269
+ VANTA.GLOBE({
270
+ el: "#vanta-bg",
271
+ mouseControls: true,
272
+ touchControls: true,
273
+ gyroControls: false,
274
+ minHeight: 200.00,
275
+ minWidth: 200.00,
276
+ scale: 1.00,
277
+ scaleMobile: 1.00,
278
+ color: '#ff580f',
279
+ backgroundColor: '#21223a',
280
+ size: 0.8
281
+ });
282
+
283
+ // Initialize Feather Icons
284
+ feather.replace();
285
+ </script>
286
+ </body>
287
  </html>