File size: 14,362 Bytes
ba28ee1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AetherSync - Super-Agent HR Ecosystem</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: '#21223a',
                        secondary: '#ff580f',
                    }
                }
            }
        }
    </script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
</head>
<body class="bg-primary text-white font-sans">
    <!-- Navigation -->
    <nav class="bg-primary/90 backdrop-blur-lg fixed w-full z-50 border-b border-gray-700">
        <div class="container mx-auto px-6 py-4">
            <div class="flex justify-between items-center">
                <div class="flex items-center space-x-2">
                    <div class="w-8 h-8 bg-secondary rounded-lg flex items-center justify-center">
                        <i data-feather="cpu" class="w-4 h-4"></i>
                    </div>
                    <span class="text-xl font-bold">AetherSync</span>
                </div>
                
                <div class="hidden md:flex space-x-8">
                    <a href="#features" class="hover:text-secondary transition-colors">Features</a>
                    <a href="#ecosystem" class="hover:text-secondary transition-colors">Ecosystem</a>
                    <a href="#demo" class="hover:text-secondary transition-colors">Demo</a>
                    <a href="dashboard.html" class="bg-secondary px-4 py-2 rounded-lg hover:bg-secondary/80 transition-colors">Launch Dashboard</a>
                </div>
                
                <button class="md:hidden">
                    <i data-feather="menu"></i>
                </button>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section id="hero" class="min-h-screen flex items-center relative overflow-hidden">
        <div id="vanta-bg" class="absolute inset-0"></div>
        <div class="container mx-auto px-6 relative z-10">
            <div class="max-w-4xl">
                <h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight">
                    Super-Agent Ecosystems
                    <span class="text-secondary block">for HR Excellence</span>
                </h1>
                <p class="text-xl md:text-2xl text-gray-300 mb-8 leading-relaxed">
                    Transform your human resources management with collaborative AI agents working in perfect harmony. 
                    Optimize payroll, time tracking, and employee management through our intelligent multi-agent architecture.
                </p>
                <div class="flex flex-col sm:flex-row gap-4">
                    <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">
                        Explore Dashboard
                    </a>
                    <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">
                        Watch Demo
                    </a>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section id="features" class="py-20 bg-primary/95">
        <div class="container mx-auto px-6">
            <div class="text-center mb-16">
                <h2 class="text-4xl md:text-5xl font-bold mb-4">Intelligent HR Automation</h2>
                <p class="text-xl text-gray-300 max-w-3xl mx-auto">
                    Our super-agent ecosystem seamlessly orchestrates complex HR processes through specialized AI agents
                </p>
            </div>

            <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Feature 1 -->
                <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
                    <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
                        <i data-feather="clock" class="text-secondary"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Time & Attendance</h3>
                    <p class="text-gray-300 mb-4">
                        Smart agents monitor and optimize employee schedules, overtime, and attendance patterns
                    </p>
                    <ul class="space-y-2 text-gray-400">
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Automated time tracking
                        </li>
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Schedule optimization
                        </li>
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Compliance monitoring
                        </li>
                    </ul>
                </div>

                <!-- Feature 2 -->
                <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
                    <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
                        <i data-feather="dollar-sign" class="text-secondary"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Payroll Processing</h3>
                    <p class="text-gray-300 mb-4">
                        Collaborative agents handle complex payroll calculations with precision and compliance
                    </p>
                    <ul class="space-y-2 text-gray-400">
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Tax optimization
                        </li>
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Benefit calculations
                        </li>
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Audit compliance
                        </li>
                    </ul>
                </div>

                <!-- Feature 3 -->
                <div class="bg-primary border border-gray-700 rounded-2xl p-8 hover:border-secondary transition-all duration-300">
                    <div class="w-12 h-12 bg-secondary/20 rounded-lg flex items-center justify-center mb-6">
                        <i data-feather="users" class="text-secondary"></i>
                    </div>
                    <h3 class="text-2xl font-bold mb-4">Employee Management</h3>
                    <p class="text-gray-300 mb-4">
                        Intelligent agents provide personalized support and management for your workforce
                    </p>
                    <ul class="space-y-2 text-gray-400">
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Performance analytics
                        </li>
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Training coordination
                        </li>
                        <li class="flex items-center">
                            <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i>
                            Career path planning
                        </li>
                    </ul>
                </div>
            </div>
        </div>
    </section>

    <!-- Ecosystem Section -->
    <section id="ecosystem" class="py-20">
        <div class="container mx-auto px-6">
            <div class="text-center mb-16">
                <h2 class="text-4xl md:text-5xl font-bold mb-4">Multi-Agent Architecture</h2>
                <p class="text-xl text-gray-300 max-w-3xl mx-auto">
                    Our ecosystem comprises specialized agents working collaboratively to optimize HR processes
                </p>
            </div>

            <div class="relative">
                <!-- Central Hub -->
                <div class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 z-10">
                    <div class="w-32 h-32 bg-secondary rounded-full flex items-center justify-center animate-pulse">
                        <i data-feather="cpu" class="w-8 h-8"></i>
                    </div>
                </div>

                <!-- Agent Nodes -->
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 relative z-20">
                    <!-- Agent 1 -->
                    <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
                        <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
                            <i data-feather="clock" class="text-secondary"></i>
                        </div>
                        <h4 class="font-bold text-lg mb-2">Chrono Agent</h4>
                        <p class="text-gray-400 text-sm">Time management & scheduling optimization</p>
                    </div>

                    <!-- Agent 2 -->
                    <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
                        <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i data-feather="dollar-sign" class="text-secondary"></i>
                        </div>
                        <h4 class="font-bold text-lg mb-2">Fiscal Agent</h4>
                        <p class="text-gray-400 text-sm">Payroll processing & financial compliance</p>
                    </div>

                    <!-- Agent 3 -->
                    <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
                        <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i data-feather="trending-up" class="text-secondary"></i>
                        </div>
                        <h4 class="font-bold text-lg mb-2">Growth Agent</h4>
                        <p class="text-gray-400 text-sm">Performance tracking & career development</p>
                    </div>

                    <!-- Agent 4 -->
                    <div class="bg-primary border border-gray-700 rounded-2xl p-6 text-center">
                        <div class="w-16 h-16 bg-secondary/20 rounded-full flex items-center justify-center mx-auto mb-4">
                        <i data-feather="shield" class="text-secondary"></i>
                        </div>
                        <h4 class="font-bold text-lg mb-2">Compliance Agent</h4>
                        <p class="text-gray-400 text-sm">Regulatory adherence & policy enforcement</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Demo Section -->
    <section id="demo" class="py-20 bg-primary/95">
        <div class="container mx-auto px-6">
            <div class="text-center mb-16">
                <h2 class="text-4xl md:text-5xl font-bold mb-4">Experience the Future</h2>
                <p class="text-xl text-gray-300 max-w-3xl mx-auto">
                    See how our super-agent ecosystem transforms HR management in real-time
                </p>
            </div>

            <div class="max-w-6xl mx-auto bg-primary border border-gray-700 rounded-2xl p-8">
                <div class="aspect-video bg-gray-800 rounded-lg flex items-center justify-center">
                    <div class="text-center">
                        <i data-feather="play-circle" class="w-16 h-16 text-secondary mx-auto mb-4"></i>
                        <p class="text-gray-400">Interactive Dashboard Demo</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="bg-primary border-t border-gray-700 py-12">
        <div class="container mx-auto px-6">
            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="flex items-center space-x-2 mb-4 md:mb-0">
                <div class="w-8 h-8 bg-secondary rounded-lg flex items-center justify-center">
                    <i data-feather="cpu" class="w-4 h-4"></i>
                </div>
                <span class="text-xl font-bold">AetherSync</span>
            </div>
            <p class="text-gray-400 text-center md:text-left">
                Super-Agent HR Ecosystems for Organizational Excellence
            </p>
            </div>
            <div class="text-center md:text-right">
                <p class="text-gray-500 text-sm">
                    © 2024 AetherSync. The future of HR management.
                </p>
            </div>
        </div>
    </footer> 

    <script>
        // Initialize Vanta.js background
        VANTA.GLOBE({
            el: "#vanta-bg",
            mouseControls: true,
            touchControls: true,
            gyroControls: false,
            minHeight: 200.00,
            minWidth: 200.00,
            scale: 1.00,
            scaleMobile: 1.00,
            color: '#ff580f',
            backgroundColor: '#21223a',
            size: 0.8
        });

        // Initialize Feather Icons
        feather.replace();
    </script>
</body>
</html>